From 5ce41373df090e66be6c0e7e9134b3dbab9b8a91 Mon Sep 17 00:00:00 2001 From: PRO100KatYT Date: Fri, 11 Feb 2022 15:21:24 +0100 Subject: [PATCH] Big Update: BR Seasonal Quests! (S3-S15) Additional update notes: - The quests are autocompleted by default. You make the server generate Seasonal Quests without any progress by changing bCompletedSeasonalQuests to false in config.ini. - Added StW EventFlags for Season 11. Enjoy! --- Config/config.ini | 3 + README.md | 3 +- index.js | 837 +- responses/quests.json | 61494 +++++++++++++++++++++++++++++++++++++++- 4 files changed, 61950 insertions(+), 387 deletions(-) diff --git a/Config/config.ini b/Config/config.ini index 46978cb..c87a39e 100644 --- a/Config/config.ini +++ b/Config/config.ini @@ -2,6 +2,9 @@ bUseConfigDisplayName=false # If this is set to false, it will use the email to display name method. displayName=LawinServer # Your fortnite display name. +[Profile] +bCompletedSeasonalQuests=true # If this is set to true, every seasonal quest will be on complete. Works from Season 3 to Season 15. + [GameServer] # Matchmaker gameserver config, you can use this to connect to gameservers like rift (titanium), fortmp, etc... (they have to be hosting though). ip=127.0.0.1 # IP the matchmaker will use upon join. diff --git a/README.md b/README.md index 98ccbcc..792f747 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ - Claiming Quest and Collection Book Rewards - Modifying quickbars in Backpack - Activating XP Boosts -- Correct Events in Frontend up to Season X (Can change) +- Correct Events in Frontend up to Season 11 (Can change) - Buying Skill Tree perks - Quests pinning - Switching between Hero Loadouts @@ -53,6 +53,7 @@ - Changing items edit styles - Support a Creator with specific codes - Fully working daily challenges system (New daily challenge every day, replacing daily challenges, etc...) +- Seasonal Quests from Season 3 up to Season 15 (Can change) ## How to use? 1) Install [NodeJS](https://nodejs.org/en/) diff --git a/index.js b/index.js index 8f17a82..6267ead 100644 --- a/index.js +++ b/index.js @@ -910,219 +910,509 @@ express.get("/fortnite/api/calendar/v1/timeline", async (req, res) => { const seasondata = require("./memory.json"); seasonchecker(req, seasondata); - var activeEvents = [ - { - "eventType": `EventFlag.Season${seasondata.season}`, - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": `EventFlag.${seasondata.lobby}`, - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }]; + var activeEvents = [ + { + "eventType": `EventFlag.Season${seasondata.season}`, + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": `EventFlag.${seasondata.lobby}`, + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }]; - if (seasondata.season == 3) { - activeEvents.push( - { - "eventType": "EventFlag.Spring2018Phase1", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Spring2018Phase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Spring2018Phase3", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Spring2018Phase4", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 4) { - activeEvents.push( - { - "eventType": "EventFlag.Blockbuster2018", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Blockbuster2018Phase1", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Blockbuster2018Phase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Blockbuster2018Phase3", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Blockbuster2018Phase4", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 5) { - activeEvents.push( - { - "eventType": "EventFlag.RoadTrip2018", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Horde", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.build == 5.10) { - activeEvents.push( - { - "eventType": "EventFlag.BirthdayBattleBus", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 6) { - activeEvents.push( - { - "eventType": "EventFlag.Fortnitemares", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.FortnitemaresPhase1", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.FortnitemaresPhase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.build == 6.20 || seasondata.build == 6.21) { - activeEvents.push( - { - "eventType": "EventFlag.LobbySeason6Halloween", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.HalloweenBattleBus", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 7) { - activeEvents.push( - { - "eventType": "EventFlag.Frostnite", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 8) { - activeEvents.push( - { - "eventType": "EventFlag.Spring2019", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Spring2019.Phase1", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Spring2019.Phase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - - if (seasondata.season == 9) { - activeEvents.push( - { - "eventType": "EventFlag.Season9.Phase1", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Season9.Phase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - if (seasondata.season == 10) { - activeEvents.push( - { - "eventType": "EventFlag.Season10.Phase2", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }, - { - "eventType": "EventFlag.Season10.Phase3", - "activeUntil": "9999-01-01T00:00:00.000Z", - "activeSince": "2020-01-01T00:00:00.000Z" - }) - } - - // Credits to Silas for three of these event flags and credits to uni for testing on 11.31 - if (seasondata.build == 11.31 || seasondata.build == 11.40) { + if (seasondata.season == 3) { activeEvents.push( { - "eventType": "EventFlag.Winterfest.Tree", + "eventType": "EventFlag.Spring2018Phase1", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }, { - "eventType": "EventFlag.LTE_WinterFest", + "eventType": "EventFlag.Spring2018Phase2", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }, + { + "eventType": "EventFlag.Spring2018Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Spring2018Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 4) { + activeEvents.push( + { + "eventType": "EventFlag.Blockbuster2018", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Blockbuster2018Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Blockbuster2018Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Blockbuster2018Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Blockbuster2018Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 5) { + activeEvents.push( + { + "eventType": "EventFlag.RoadTrip2018", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Horde", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Heist", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.build == 5.10) { + activeEvents.push( + { + "eventType": "EventFlag.BirthdayBattleBus", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 6) { + activeEvents.push( + { + "eventType": "EventFlag.Fortnitemares", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.FortnitemaresPhase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.FortnitemaresPhase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Fortnitemares", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_LilKevin", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.build == 6.20 || seasondata.build == 6.21) { + activeEvents.push( + { + "eventType": "EventFlag.LobbySeason6Halloween", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HalloweenBattleBus", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 7) { + activeEvents.push( + { + "eventType": "EventFlag.Frostnite", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_14DaysOfFortnite", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Festivus", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_WinterDeimos", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_S7_OverTime", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 8) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2019", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Spring2019.Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Spring2019.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Ashton", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Goose", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_HighStakes", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_BootyBay", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + + if (seasondata.season == 9) { + activeEvents.push( + { + "eventType": "EventFlag.Season9.Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season9.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Anniversary2019_BR", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_14DaysOfSummer", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Mash", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Wax", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 10) { + activeEvents.push( + { + "eventType": "EventFlag.Season10.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season10.Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_BlackMonday", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S10_Oak", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EEventFlag.S10_Mystery", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 11) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_CoinCollectXP", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Fortnitemares2019", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Galileo_Feats", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Galileo", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, { "eventType": "EventFlag.LTE_WinterFest2019", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" - }, + }) + if (Number(seasondata.build.toString().split(".")[1].split("")[0]) >= 2) { + activeEvents.push( + { + "eventType": "EventFlag.Starlight", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (Number(seasondata.build.toString().split(".")[1].split("")[0]) < 3) { + activeEvents.push( + { + "eventType": "EventFlag.Season11.Fortnitemares.Quests.Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.Fortnitemares.Quests.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.Fortnitemares.Quests.Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.Fortnitemares.Quests.Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.StormKing.Landmark", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + else { + activeEvents.push( + { + "eventType": "EventFlag.HolidayDeco", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.WinterFest.Quests.Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.WinterFest.Quests.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.WinterFest.Quests.Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Season11.Frostnite", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + // Credits to Silas for these BR Winterfest event flags and credits to uni for testing on 11.31 + if (seasondata.build == 11.31 || seasondata.build == 11.40) { + activeEvents.push( + { + "eventType": "EventFlag.Winterfest.Tree", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_WinterFest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_WinterFest2019", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + if (seasondata.season == 12) { + activeEvents.push( { - "eventType": "EventFlag.HolidayDeco", + "eventType": "EventFlag.LTE_SpyGames", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }, { - "eventType": "EventFlag.Season11.Frostnite", + "eventType": "EventFlag.LTE_JerkyChallenges", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }, { - "eventType": "EventFlag.Season11.WinterFest.Quests.Phase1", + "eventType": "EventFlag.LTE_Oro", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }, { - "eventType": "EventFlag.Season11.WinterFest.Quests.Phase2", + "eventType": "EventFlag.LTE_StormTheAgency", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 14) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_Fortnitemares_2020", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (seasondata.season == 15) { + activeEvents.push( + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_01", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_02", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_03", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_04", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_05", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_06", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_07", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_08", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_09", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_10", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_11", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_12", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_13", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_14", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S15_Legendary_Week_15", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_HiddenRole", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_OperationSnowdown", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_PlumRetro", "activeUntil": "9999-01-01T00:00:00.000Z", "activeSince": "2020-01-01T00:00:00.000Z" }) @@ -1701,7 +1991,7 @@ express.post("/fortnite/api/game/v2/profile/*/client/SetPinnedQuests", async (re // Replace Daily Quests express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", async (req, res) => { const profile = require(`./profiles/${req.query.profileId || "athena"}.json`); - var QuestIDS = JSON.parse(JSON.stringify(require("./responses/quests.json"))); + var DailyQuestIDS = JSON.parse(JSON.stringify(require("./responses/quests.json"))); // do not change any of these or you will end up breaking it var ApplyProfileChanges = []; @@ -1711,19 +2001,19 @@ express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", asyn var StatChanged = false; if (req.query.profileId == "profile0" || req.query.profileId == "campaign") { - QuestIDS = QuestIDS.SaveTheWorld + DailyQuestIDS = DailyQuestIDS.SaveTheWorld.Daily } if (req.query.profileId == "athena") { - QuestIDS = QuestIDS.BattleRoyale + DailyQuestIDS = DailyQuestIDS.BattleRoyale.Daily } const NewQuestID = makeid(); - var randomNumber = Math.floor(Math.random() * QuestIDS.length); + var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); for (var key in profile.items) { - while (QuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { - randomNumber = Math.floor(Math.random() * QuestIDS.length); + while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { + randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); } } @@ -1733,7 +2023,7 @@ express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", asyn delete profile.items[req.body.questId]; profile.items[NewQuestID] = { - "templateId": QuestIDS[randomNumber].templateId, + "templateId": DailyQuestIDS[randomNumber].templateId, "attributes": { "creation_time": new Date().toISOString(), "level": -1, @@ -1756,8 +2046,8 @@ express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", asyn "quantity": 1 }; - for (var i in QuestIDS[randomNumber].objectives) { - profile.items[NewQuestID].attributes[`completion_${QuestIDS[randomNumber].objectives[i]}`] = 0 + for (var i in DailyQuestIDS[randomNumber].objectives) { + profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i]}`] = 0 } StatChanged = true; @@ -1787,7 +2077,7 @@ express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", asyn Notifications.push({ "type": "dailyQuestReroll", "primary": true, - "newQuestId": QuestIDS[randomNumber].templateId + "newQuestId": DailyQuestIDS[randomNumber].templateId }) fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); @@ -1872,6 +2162,9 @@ express.post("/fortnite/api/game/v2/profile/*/client/MarkNewQuestNotificationSen express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (req, res) => { const profile = require(`./profiles/${req.query.profileId || "athena"}.json`); var QuestIDS = JSON.parse(JSON.stringify(require("./responses/quests.json"))); + const seasondata = require("./memory.json"); + const seasonchecker = require("./seasonchecker.js"); + seasonchecker(req, seasondata); // do not change any of these or you will end up breaking it var ApplyProfileChanges = []; @@ -1882,10 +2175,12 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r var QuestCount = 0; var ShouldGiveQuest = true; var DateFormat = (new Date().toISOString()).split("T")[0]; + var DailyQuestIDS; + var SeasonQuestIDS; try { if (req.query.profileId == "profile0" || req.query.profileId == "campaign") { - QuestIDS = QuestIDS.SaveTheWorld + DailyQuestIDS = QuestIDS.SaveTheWorld.Daily for (var key in profile.items) { if (profile.items[key].templateId.toLowerCase().startsWith("quest:daily")) { @@ -1895,12 +2190,25 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r } if (req.query.profileId == "athena") { - QuestIDS = QuestIDS.BattleRoyale + DailyQuestIDS = QuestIDS.BattleRoyale.Daily + if (QuestIDS.BattleRoyale.hasOwnProperty(`Season${seasondata.season}`)) { + SeasonQuestIDS = QuestIDS.BattleRoyale[`Season${seasondata.season}`] + } for (var key in profile.items) { if (profile.items[key].templateId.toLowerCase().startsWith("quest:athenadaily")) { QuestCount += 1; } + if (key.split("")[0] == "S" && (Number.isInteger(Number(key.split("")[1]))) && (key.split("")[2] == "-" || (Number.isInteger(Number(key.split("")[2])) && key.split("")[3] == "-"))) { + if (!key.startsWith(`S${seasondata.season}-`)) { + delete profile.items[key]; + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + StatChanged = true; + } + } } } @@ -1923,16 +2231,16 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r if (QuestCount < 3 && ShouldGiveQuest == true) { const NewQuestID = makeid(); - var randomNumber = Math.floor(Math.random() * QuestIDS.length); + var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); for (var key in profile.items) { - while (QuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { - randomNumber = Math.floor(Math.random() * QuestIDS.length); + while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { + randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); } } profile.items[NewQuestID] = { - "templateId": QuestIDS[randomNumber].templateId, + "templateId": DailyQuestIDS[randomNumber].templateId, "attributes": { "creation_time": new Date().toISOString(), "level": -1, @@ -1955,8 +2263,8 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r "quantity": 1 }; - for (var i in QuestIDS[randomNumber].objectives) { - profile.items[NewQuestID].attributes[`completion_${QuestIDS[randomNumber].objectives[i]}`] = 0 + for (var i in DailyQuestIDS[randomNumber].objectives) { + profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i]}`] = 0 } profile.stats.attributes.quest_manager.dailyLoginInterval = new Date().toISOString(); @@ -1977,6 +2285,127 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r } } catch (err) {} + if (SeasonQuestIDS) { + for (var ChallengeBundleSchedule in SeasonQuestIDS.ChallengeBundleSchedules) { + if (profile.items.hasOwnProperty(ChallengeBundleSchedule.itemGuid)) { + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": ChallengeBundleSchedule.itemGuid + }) + } + ChallengeBundleSchedule = SeasonQuestIDS.ChallengeBundleSchedules[ChallengeBundleSchedule]; + profile.items[ChallengeBundleSchedule.itemGuid] = { + "templateId": ChallengeBundleSchedule.templateId, + "attributes": { + "unlock_epoch": "2018-01-31T00:00:00.000Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "granted_bundles": ChallengeBundleSchedule.granted_bundles + }, + "quantity": 1 + }; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ChallengeBundleSchedule.itemGuid, + "item": profile.items[ChallengeBundleSchedule.itemGuid] + }) + StatChanged = true; + } + for (var ChallengeBundle in SeasonQuestIDS.ChallengeBundles) { + if (profile.items.hasOwnProperty(ChallengeBundle.itemGuid)) { + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": ChallengeBundle.itemGuid + }) + } + ChallengeBundle = SeasonQuestIDS.ChallengeBundles[ChallengeBundle]; + if (config.Profile.bCompletedSeasonalQuests == true && ChallengeBundle.hasOwnProperty("questStages")) { + ChallengeBundle.grantedquestinstanceids = ChallengeBundle.grantedquestinstanceids.concat(ChallengeBundle.questStages); + } + profile.items[ChallengeBundle.itemGuid] = { + "templateId": ChallengeBundle.templateId, + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "grantedquestinstanceids": ChallengeBundle.grantedquestinstanceids, + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 0, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": ChallengeBundle.challenge_bundle_schedule_id, + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }; + profile.items[ChallengeBundle.itemGuid].attributes.num_granted_bundle_quests = ChallengeBundle.grantedquestinstanceids.length; + if (config.Profile.bCompletedSeasonalQuests == true) { + profile.items[ChallengeBundle.itemGuid].attributes.num_quests_completed = ChallengeBundle.grantedquestinstanceids.length; + profile.items[ChallengeBundle.itemGuid].attributes.num_progress_quests_completed = ChallengeBundle.grantedquestinstanceids.length; + } + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ChallengeBundle.itemGuid, + "item": profile.items[ChallengeBundle.itemGuid] + }) + StatChanged = true; + } + for (var Quest in SeasonQuestIDS.Quests) { + if (profile.items.hasOwnProperty(Quest.itemGuid)) { + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": Quest.itemGuid + }) + } + Quest = SeasonQuestIDS.Quests[Quest]; + profile.items[Quest.itemGuid] = { + "templateId": Quest.templateId, + "attributes": { + "creation_time": "2018-01-31T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": Quest.challenge_bundle_id, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2018-01-31T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }; + if (config.Profile.bCompletedSeasonalQuests == true) { + profile.items[Quest.itemGuid].attributes.quest_state = "Claimed"; + } + for (var i in Quest.objectives) { + if (config.Profile.bCompletedSeasonalQuests == true) { + profile.items[Quest.itemGuid].attributes[`completion_${Quest.objectives[i].name}`] = Quest.objectives[i].count; + } + else { + profile.items[Quest.itemGuid].attributes[`completion_${Quest.objectives[i].name}`] = 0; + } + } + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": Quest.itemGuid, + "item": profile.items[Quest.itemGuid] + }) + StatChanged = true; + } + } + if (StatChanged == true) { profile.rvn += 1; profile.commandRevision += 1; diff --git a/responses/quests.json b/responses/quests.json index 8615819..6e75b13 100644 --- a/responses/quests.json +++ b/responses/quests.json @@ -1,210 +1,61340 @@ { - "SaveTheWorld": [ - { - "templateId": "Quest:Daily_DestroyArcadeMachines", - "objectives": [ - "quest_reactive_destroyarcade_v4" + "author": "This list was created by PRO100KatYT", + "SaveTheWorld": { + "Daily": [ + { + "templateId": "Quest:Daily_DestroyArcadeMachines", + "objectives": [ + "quest_reactive_destroyarcade_v4" + ] + }, + { + "templateId": "Quest:Daily_DestroyBears", + "objectives": [ + "quest_reactive_destroybear_v3" + ] + }, + { + "templateId": "Quest:Daily_DestroyFireTrucks", + "objectives": [ + "quest_reactive_destroyfiretruck_v2" + ] + }, + { + "templateId": "Quest:Daily_DestroyGnomes", + "objectives": [ + "quest_reactive_destroygnome_v2" + ] + }, + { + "templateId": "Quest:Daily_DestroyPropaneTanks", + "objectives": [ + "quest_reactive_destroypropane_v2" + ] + }, + { + "templateId": "Quest:Daily_DestroySeesaws", + "objectives": [ + "quest_reactive_destroyseesaw_v3" + ] + }, + { + "templateId": "Quest:Daily_DestroyServerRacks", + "objectives": [ + "quest_reactive_destroyserverrack_v2" + ] + }, + { + "templateId": "Quest:Daily_DestroyTransformers", + "objectives": [ + "quest_reactive_destroytransform_v3" + ] + }, + { + "templateId": "Quest:Daily_DestroyTVs", + "objectives": [ + "quest_reactive_destroytv_v2" + ] + }, + { + "templateId": "Quest:Daily_High_Priority", + "objectives": [ + "questcollect_survivoritemdata" + ] + }, + { + "templateId": "Quest:Daily_HuskExtermination_AnyHero", + "objectives": [ + "kill_husk" + ] + }, + { + "templateId": "Quest:Daily_HuskExtermination_Constructor", + "objectives": [ + "kill_husk_constructor_v2" + ] + }, + { + "templateId": "Quest:Daily_HuskExtermination_Ninja", + "objectives": [ + "kill_husk_ninja_v2" + ] + }, + { + "templateId": "Quest:Daily_HuskExtermination_Outlander", + "objectives": [ + "kill_husk_outlander_v2" + ] + }, + { + "templateId": "Quest:Daily_HuskExtermination_Soldier", + "objectives": [ + "kill_husk_commando_v2" + ] + }, + { + "templateId": "Quest:Daily_Mission_Specialist_Constructor", + "objectives": [ + "complete_constructor" + ] + }, + { + "templateId": "Quest:Daily_Mission_Specialist_Ninja", + "objectives": [ + "complete_ninja" + ] + }, + { + "templateId": "Quest:Daily_Mission_Specialist_Outlander", + "objectives": [ + "complete_outlander" + ] + }, + { + "templateId": "Quest:Daily_Mission_Specialist_Soldier", + "objectives": [ + "complete_commando" + ] + }, + { + "templateId": "Quest:Daily_PartyOf50", + "objectives": [ + "questcollect_survivoritemdata_v2" + ] + } + ] + }, + "BattleRoyale": { + "Daily": [ + { + "templateId": "Quest:AthenaDaily_Outlive_Solo", + "objectives": [ + "daily_athena_outlive_solo_players" + ] + }, + { + "templateId": "Quest:AthenaDaily_Outlive_Squad", + "objectives": [ + "daily_athena_outlive_squad_players_v2" + ] + }, + { + "templateId": "Quest:AthenaDaily_Outlive", + "objectives": [ + "daily_athena_outlive_players_v3" + ] + }, + { + "templateId": "Quest:AthenaDaily_PlayMatches", + "objectives": [ + "daily_athena_play_matches_v3" + ] + }, + { + "templateId": "Quest:AthenaDaily_Solo_Top25", + "objectives": [ + "daily_athena_solo_top25_v2" + ] + }, + { + "templateId": "Quest:AthenaDaily_Squad_Top6", + "objectives": [ + "daily_athena_squad_top6_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_InteractAmmoCrate", + "objectives": [ + "athena_daily_loot_ammobox_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_InteractTreasureChest", + "objectives": [ + "daily_athena_loot_chest_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerElimination", + "objectives": [ + "athena_daily_kill_players_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationAssaultRifles", + "objectives": [ + "athena_daily_kill_players_assault_rifles" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationPistols", + "objectives": [ + "athena_daily_kill_players_pistol_v3" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationShotguns", + "objectives": [ + "athena_daily_kill_players_shotgun_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSMGs", + "objectives": [ + "athena_daily_kill_players_smg_v2" + ] + }, + { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSniperRifles", + "objectives": [ + "athena_daily_kill_players_sniper_v2" + ] + } + ], + "Season3": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "templateId": "ChallengeBundleSchedule:Season3_Challenge_Schedule", + "granted_bundles": [ + "S3-ChallengeBundle:S3_Week1_QuestBundle", + "S3-ChallengeBundle:S3_Week2_QuestBundle", + "S3-ChallengeBundle:S3_Week3_QuestBundle", + "S3-ChallengeBundle:S3_Week4_QuestBundle", + "S3-ChallengeBundle:S3_Week5_QuestBundle", + "S3-ChallengeBundle:S3_Week6_QuestBundle", + "S3-ChallengeBundle:S3_Week7_QuestBundle", + "S3-ChallengeBundle:S3_Week8_QuestBundle", + "S3-ChallengeBundle:S3_Week9_QuestBundle", + "S3-ChallengeBundle:S3_Week10_QuestBundle" + ] + }, + { + "itemGuid": "S3-ChallengeBundleSchedule:Season3_Tier_100_Schedule", + "templateId": "ChallengeBundleSchedule:Season3_Tier_100_Schedule", + "granted_bundles": [ + "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + ] + }, + { + "itemGuid": "S3-ChallengeBundleSchedule:Season3_Tier_2_Schedule", + "templateId": "ChallengeBundleSchedule:Season3_Tier_2_Schedule", + "granted_bundles": [ + "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "templateId": "ChallengeBundle:S3_Week10_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "S3-Quest:Quest_BR_Damage_Headshot", + "S3-Quest:Quest_BR_Interact_Chests_Locations_Different", + "S3-Quest:Quest_BR_Skydive_Rings", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "S3-Quest:Quest_BR_Eliminate", + "S3-Quest:Quest_BR_Eliminate_Location_PleasantPark" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "templateId": "ChallengeBundle:S3_Week1_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Damage_Pistol", + "S3-Quest:Quest_BR_Interact_Chests_Location_PleasantPark", + "S3-Quest:Quest_BR_Revive", + "S3-Quest:Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "S3-Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "S3-Quest:Quest_BR_Eliminate_Location_FatalFields" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "templateId": "ChallengeBundle:S3_Week2_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Use_Launchpad", + "S3-Quest:Quest_BR_Damage_AssaultRifle", + "S3-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "S3-Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "S3-Quest:Quest_BR_Eliminate_Weapon_SMG", + "S3-Quest:Quest_BR_Eliminate_Location_GreasyGrove" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "templateId": "ChallengeBundle:S3_Week3_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Collect_BuildingResources", + "S3-Quest:Quest_BR_Damage_SuppressedWeapon", + "S3-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "S3-Quest:Quest_BR_Land_Bulleyes_Different", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "S3-Quest:Quest_BR_Eliminate_Weapon_Crossbow", + "S3-Quest:Quest_BR_Eliminate_Location_SaltySprings" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "templateId": "ChallengeBundle:S3_Week4_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Damage_SniperRifle", + "S3-Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "S3-Quest:Quest_BR_Interact_SupplyDrops", + "S3-Quest:Quest_BR_Visit_IceCreamTrucks_Different", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "S3-Quest:Quest_BR_Eliminate_Trap", + "S3-Quest:Quest_BR_Eliminate_Location_TomatoTown" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "templateId": "ChallengeBundle:S3_Week5_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Use_Bush", + "S3-Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "S3-Quest:Quest_BR_Damage_Pickaxe", + "S3-Quest:Quest_BR_Visit_GasStations_SingleMatch", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "S3-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "S3-Quest:Quest_BR_Eliminate_Location_TiltedTowers" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "templateId": "ChallengeBundle:S3_Week6_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Damage_SMG", + "S3-Quest:Quest_BR_Interact_Chests_Location_AnarchyAcres", + "S3-Quest:Quest_BR_Use_CozyCampfire", + "S3-Quest:Quest_BR_Visit_MountainPeaks", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "S3-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "S3-Quest:Quest_BR_Eliminate_Location_RetailRow" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "templateId": "ChallengeBundle:S3_Week7_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "S3-Quest:Quest_BR_Damage_Shotgun", + "S3-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "S3-Quest:Quest_BR_Interact_GniceGnomes", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "S3-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "S3-Quest:Quest_BR_Eliminate_Location_ShiftyShafts" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "templateId": "ChallengeBundle:S3_Week8_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Use_VendingMachine", + "S3-Quest:Quest_BR_Damage_ExplosiveWeapon", + "S3-Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "S3-Quest:Quest_BR_Dance_ScavengerHunt_DanceFloors", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "S3-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "S3-Quest:Quest_BR_Eliminate_Location_DustyDepot" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "templateId": "ChallengeBundle:S3_Week9_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Damage_Enemy_Buildings", + "S3-Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "S3-Quest:Quest_BR_Build_Structures", + "S3-Quest:Quest_BR_Visit_TacoShops_SingleMatch", + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "S3-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "S3-Quest:Quest_BR_Eliminate_Location_LuckyLanding" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "templateId": "ChallengeBundle:S3_Tier_100_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Interact_Chests_SingleMatch", + "S3-Quest:Quest_BR_Play_Min1Elimination", + "S3-Quest:Quest_BR_Damage_SingleMatch", + "S3-Quest:Quest_BR_Eliminate_Weapon_Pickaxe", + "S3-Quest:Quest_BR_Eliminate_Singel_Match_Elemeinations", + "S3-Quest:Quest_BR_Place_Top10_Solo", + "S3-Quest:Quest_BR_Place_Top3_Squad" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Tier_100_Schedule" + }, + { + "itemGuid": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "templateId": "ChallengeBundle:S3_Tier_2_QuestBundle", + "grantedquestinstanceids": [ + "S3-Quest:Quest_BR_Outlive", + "S3-Quest:Quest_BR_Play_Min1Friend", + "S3-Quest:Quest_BR_Damage", + "S3-Quest:Quest_BR_Land_Locations_Different", + "S3-Quest:Quest_BR_Play", + "S3-Quest:Quest_BR_LevelUp_SeasonLevel_25", + "S3-Quest:Quest_BR_Place_Win" + ], + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Tier_2_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S3-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 250 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players", + "count": 10 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_PleasantPark", + "templateId": "Quest:Quest_BR_Eliminate_Location_PleasantPark", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pleasantpark", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_anarchyacres", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_dustydepot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_moistymire", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tomatotown", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_wailingwoods", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_fatalfields", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_08", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Skydive_Rings", + "templateId": "Quest:Quest_BR_Skydive_Rings", + "objectives": [ + { + "name": "battlepass_skydive_athena_rings", + "count": 10 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_Pistol", + "templateId": "Quest:Quest_BR_Damage_Pistol", + "objectives": [ + { + "name": "battlepass_damage_athena_player_pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_FatalFields", + "templateId": "Quest:Quest_BR_Eliminate_Location_FatalFields", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_fatalfields", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_sniper", + "count": 2 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_PleasantPark", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_PleasantPark", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_pleasantpark", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_01", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Revive", + "templateId": "Quest:Quest_BR_Revive", + "objectives": [ + { + "name": "battlepass_athena_revive_player", + "count": 5 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab", + "templateId": "Quest:Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab", + "objectives": [ + { + "name": "battlepass_visit_location_crab", + "count": 1 + }, + { + "name": "battlepass_visit_location_fox", + "count": 1 + }, + { + "name": "battlepass_visit_location_llama", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_AssaultRifle", + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_asssult", + "count": 1000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "objectives": [ + { + "name": "battlepass_dance_athena_location_forbidden_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_11", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_12", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_13", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_14", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_15", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_GreasyGrove", + "templateId": "Quest:Quest_BR_Eliminate_Location_GreasyGrove", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_greasygrove", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_SMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_smg", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_walingwoods", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_02", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Use_Launchpad", + "templateId": "Quest:Quest_BR_Use_Launchpad", + "objectives": [ + { + "name": "battlepass_interact_athena_jumppad", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Collect_BuildingResources", + "templateId": "Quest:Quest_BR_Collect_BuildingResources", + "objectives": [ + { + "name": "battlepass_collect_building_resources", + "count": 3000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Damage_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_suppressed_weapon", + "count": 500 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_SaltySprings", + "templateId": "Quest:Quest_BR_Eliminate_Location_SaltySprings", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_saltysprings", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_Crossbow", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Crossbow", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_crossbow", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_junkjunction", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_03", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Land_Bulleyes_Different", + "templateId": "Quest:Quest_BR_Land_Bulleyes_Different", + "objectives": [ + { + "name": "battlepass_athena_land_location_bullseye_01", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_02", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_03", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_04", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_05", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_06", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_07", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_08", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_09", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_10", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_11", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_12", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_13", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_14", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_15", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_16", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_17", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_18", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_19", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_20", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_21", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_22", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_23", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_24", + "count": 1 + }, + { + "name": "battlepass_athena_land_location_bullseye_25", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_SniperRifle", + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_TomatoTown", + "templateId": "Quest:Quest_BR_Eliminate_Location_TomatoTown", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tomatotown", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Trap", + "templateId": "Quest:Quest_BR_Eliminate_Trap", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_trap", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_flushfactory", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_04", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_SupplyDrops", + "templateId": "Quest:Quest_BR_Interact_SupplyDrops", + "objectives": [ + { + "name": "battlepass_interact_athena_supply_drop", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Visit_IceCreamTrucks_Different", + "templateId": "Quest:Quest_BR_Visit_IceCreamTrucks_Different", + "objectives": [ + { + "name": "battlepass_visit_athena_location_icream_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_07", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_08", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_09", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_10", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_11", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_12", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_13", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_14", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_icream_15", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 200 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tiltedtowers", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_moistymire", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_05", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Use_Bush", + "templateId": "Quest:Quest_BR_Use_Bush", + "objectives": [ + { + "name": "battlepass_use_item_bush", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Visit_GasStations_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_GasStations_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_location_gas_station_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_07", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_08", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_09", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_gas_station_10", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_explosives", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_RetailRow", + "templateId": "Quest:Quest_BR_Eliminate_Location_RetailRow", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_retailrow", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_AnarchyAcres", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_AnarchyAcres", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_anarchyacres", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_06", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Use_CozyCampfire", + "templateId": "Quest:Quest_BR_Use_CozyCampfire", + "objectives": [ + { + "name": "battlepass_place_athena_camp_fire", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Visit_MountainPeaks", + "templateId": "Quest:Quest_BR_Visit_MountainPeaks", + "objectives": [ + { + "name": "battlepass_visit_athena_location_mountain_summit_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_07", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_08", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_09", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_10", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_11", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_12", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_13", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_14", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_15", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_16", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_17", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_18", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_19", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_20", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_Shotgun", + "templateId": "Quest:Quest_BR_Damage_Shotgun", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun", + "count": 1000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "templateId": "Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shiftyshafts", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_suppressed_weapon", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest", + "count": 1 + }, + { + "name": "battlepass_interact_athena_ammobox", + "count": 1 + }, + { + "name": "battlepass_interact_athena_supplydrop", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_lonelylodge", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_GniceGnomes", + "templateId": "Quest:Quest_BR_Interact_GniceGnomes", + "objectives": [ + { + "name": "battlepass_interact_athena_gnice_gnome_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_15", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_16", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_17", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_18", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_19", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_20", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_07", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Damage_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_explosives", + "count": 500 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Dance_ScavengerHunt_DanceFloors", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_DanceFloors", + "objectives": [ + { + "name": "battlepass_dance_athena_location_disco_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_11", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_12", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_13", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_14", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_disco_15", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_DustyDepot", + "templateId": "Quest:Quest_BR_Eliminate_Location_DustyDepot", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_dustydepot", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_assault", + "count": 5 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_snobbyshores", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_10", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Use_VendingMachine", + "templateId": "Quest:Quest_BR_Use_VendingMachine", + "objectives": [ + { + "name": "battlepass_interact_athena_vendingmachine", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Build_Structures", + "templateId": "Quest:Quest_BR_Build_Structures", + "objectives": [ + { + "name": "battlepass_build_athena_structures_any", + "count": 250 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_Enemy_Buildings", + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_buildings", + "count": 5000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "templateId": "Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_luckylanding", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shotgun", + "count": 4 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_hauntedhills", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_09", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Visit_TacoShops_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_TacoShops_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_taco_shop_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_07", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_08", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_09", + "count": 1 + }, + { + "name": "battlepass_visit_athena_taco_shop_10", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage_SingleMatch", + "templateId": "Quest:Quest_BR_Damage_SingleMatch", + "objectives": [ + { + "name": "battlepass_damage_athena_player_single_match", + "count": 1000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Singel_Match_Elemeinations", + "templateId": "Quest:Quest_BR_Eliminate_Singel_Match_Elemeinations", + "objectives": [ + { + "name": "killingblow_athena_player_singlematch", + "count": 5 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Eliminate_Weapon_Pickaxe", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pickaxe", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pickaxe", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Interact_Chests_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_Chests_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_athena_loot_chest_single_match", + "count": 7 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Place_Top10_Solo", + "templateId": "Quest:Quest_BR_Place_Top10_Solo", + "objectives": [ + { + "name": "battlepass_athena_place_solo_top_10", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Place_Top3_Squad", + "templateId": "Quest:Quest_BR_Place_Top3_Squad", + "objectives": [ + { + "name": "battlepass_athena_place_squad_top_3", + "count": 3 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Play_Min1Elimination", + "templateId": "Quest:Quest_BR_Play_Min1Elimination", + "objectives": [ + { + "name": "battlepass_complete_athena_with_killingblow", + "count": 10 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Damage", + "templateId": "Quest:Quest_BR_Damage", + "objectives": [ + { + "name": "battlepass_damage_athena_player", + "count": 5000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Land_Locations_Different", + "templateId": "Quest:Quest_BR_Land_Locations_Different", + "objectives": [ + { + "name": "battlepass_land_athena_location_anarchyacres", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_dustydepot", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_flushfactory", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_greasygrove", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_moistymire", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_tomatotown", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_wailingwoods", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_LevelUp_SeasonLevel_25", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_25", + "objectives": [ + { + "name": "athena_season_levelup", + "count": 25 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Outlive", + "templateId": "Quest:Quest_BR_Outlive", + "objectives": [ + { + "name": "battlepass_athena_outlive_players", + "count": 1000 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Place_Win", + "templateId": "Quest:Quest_BR_Place_Win", + "objectives": [ + { + "name": "battlepass_athena_win_match", + "count": 1 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Play", + "templateId": "Quest:Quest_BR_Play", + "objectives": [ + { + "name": "battlepass_athena_play_matches", + "count": 50 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + }, + { + "itemGuid": "S3-Quest:Quest_BR_Play_Min1Friend", + "templateId": "Quest:Quest_BR_Play_Min1Friend", + "objectives": [ + { + "name": "battlepass_athena_friend", + "count": 10 + } + ], + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + } ] }, - { - "templateId": "Quest:Daily_DestroyBears", - "objectives": [ - "quest_reactive_destroybear_v3" + "Season4": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "templateId": "ChallengeBundleSchedule:Season4_Challenge_Schedule", + "granted_bundles": [ + "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "S4-ChallengeBundle:QuestBundle_S4_Week_010" + ] + }, + { + "itemGuid": "S4-ChallengeBundleSchedule:Season4_ProgressiveB_Schedule", + "templateId": "ChallengeBundleSchedule:Season4_ProgressiveB_Schedule", + "granted_bundles": [ + "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + ] + }, + { + "itemGuid": "S4-ChallengeBundleSchedule:Season4_StarterChallenge_Schedule", + "templateId": "ChallengeBundleSchedule:Season4_StarterChallenge_Schedule", + "granted_bundles": [ + "S4-ChallengeBundle:QuestBundle_S4_Starter" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S4_Cumulative", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_01", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_02", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_03", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_04", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_05", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_06", + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_07" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "templateId": "ChallengeBundle:QuestBundle_S4_ProgressiveA", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_001", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_SniperRifle", + "S4-Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "S4-Quest:Quest_BR_Use_PortaFort", + "S4-Quest:Quest_BR_Interact_FORTNITE", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "S4-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "S4-Quest:Quest_BR_Eliminate_Location_FlushFactory", + "S4-Quest:Quest_BR_S4W1_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_002", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Interact_Chests_Location_GreasyGrove", + "S4-Quest:Quest_BR_Interact_GravityStones", + "S4-Quest:Quest_BR_Damage_SuppressedWeapon", + "S4-Quest:Quest_BR_Dance_ScavengerHunt_Cameras", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "S4-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "S4-Quest:Quest_BR_Eliminate_Location_TomatoTown", + "S4-Quest:Quest_BR_S4W2_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_003", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Revive", + "S4-Quest:Quest_BR_Damage_Pistol", + "S4-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "S4-Quest:Quest_BR_Interact_RubberDuckies", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "S4-Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "S4-Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "S4-Quest:Quest_BR_S4W3_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_004", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_AssaultRifle", + "S4-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "S4-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "S4-Quest:Quest_BR_Visit_ScavengerHunt_StormCircles", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "S4-Quest:Quest_BR_Eliminate_Trap", + "S4-Quest:Quest_BR_Eliminate_Location_SnobbyShores", + "S4-Quest:Quest_BR_S4W4_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_005", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_SMG", + "S4-Quest:Quest_BR_Interact_Chests_Location_DustyDivot", + "S4-Quest:Quest_BR_Use_VendingMachine", + "S4-Quest:Quest_BR_Dance_ScavengerHunt_Platforms", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "S4-Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "S4-Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "S4-Quest:Quest_BR_S4W5_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_006", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Interact_SupplyDrops", + "S4-Quest:Quest_BR_Damage_Shotgun", + "S4-Quest:Quest_BR_Interact_Chests_Location_LootLake", + "S4-Quest:Quest_BR_Spray_SpecificTargets", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "S4-Quest:Quest_BR_Eliminate_Weapon_SMG", + "S4-Quest:Quest_BR_Eliminate_Location_RetailRow", + "S4-Quest:Quest_BR_S4W6_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_007", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_Pickaxe", + "S4-Quest:Quest_BR_Interact_Chests_Location_RiskyReels", + "S4-Quest:Quest_BR_Interact_ForagedItems", + "S4-Quest:Quest_BR_Score_Goals", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "S4-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "S4-Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "S4-Quest:Quest_BR_S4W7_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_008", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_Headshot", + "S4-Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "S4-Quest:Quest_BR_Interact_Chests_SingleMatch", + "S4-Quest:Quest_BR_Interact_GniceGnomes", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "S4-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "S4-Quest:Quest_BR_Eliminate_Location_PleasantPark", + "S4-Quest:Quest_BR_S4W8_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_009", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Damage_ExplosiveWeapon", + "S4-Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "S4-Quest:Quest_BR_Use_ShoppingCart", + "S4-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "S4-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "S4-Quest:Quest_BR_Eliminate_Location_AnarchyAcres", + "S4-Quest:Quest_BR_S4W9_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S4_Week_010", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "S4-Quest:Quest_BR_Damage_Enemy_Buildings", + "S4-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "S4-Quest:Quest_BR_Skydive_Rings", + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "S4-Quest:Quest_BR_Eliminate", + "S4-Quest:Quest_BR_Eliminate_Location_FatalFields", + "S4-Quest:Quest_BR_S4W10_Cumulative_CompleteAll" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "templateId": "ChallengeBundle:QuestBundle_S4_ProgressiveB", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04", + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_ProgressiveB_Schedule" + }, + { + "itemGuid": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "templateId": "ChallengeBundle:QuestBundle_S4_Starter", + "grantedquestinstanceids": [ + "S4-Quest:Quest_BR_Outlive", + "S4-Quest:Quest_BR_Play_Min1Friend", + "S4-Quest:Quest_BR_Damage", + "S4-Quest:Quest_BR_Land_Locations_Different", + "S4-Quest:Quest_BR_Play", + "S4-Quest:Quest_BR_Play_Min1Elimination", + "S4-Quest:Quest_BR_Place_Win" + ], + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_StarterChallenge_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_01", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_01", + "objectives": [ + { + "name": "battlepass_cumulative_token1", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_02", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_02", + "objectives": [ + { + "name": "battlepass_cumulative_token2", + "count": 2 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_03", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_03", + "objectives": [ + { + "name": "battlepass_cumulative_token3", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_04", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_04", + "objectives": [ + { + "name": "battlepass_cumulative_token4", + "count": 4 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_05", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_05", + "objectives": [ + { + "name": "battlepass_cumulative_token5", + "count": 5 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_06", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_06", + "objectives": [ + { + "name": "battlepass_cumulative_token6", + "count": 6 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_07", + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_07", + "objectives": [ + { + "name": "battlepass_cumulative_token7", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01", + "objectives": [ + { + "name": "athena_season_levelup_progressive_a_01", + "count": 10 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02", + "objectives": [ + { + "name": "athena_season_levelup_progressive_a_02", + "count": 20 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03", + "objectives": [ + { + "name": "athena_season_levelup_progressive_a_03", + "count": 30 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04", + "objectives": [ + { + "name": "athena_season_levelup_progressive_a_04", + "count": 40 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05", + "objectives": [ + { + "name": "athena_season_levelup_progressive_a_05", + "count": 65 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_SniperRifle", + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_FlushFactory", + "templateId": "Quest:Quest_BR_Eliminate_Location_FlushFactory", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_flushfactory", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_hauntedhills", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_FORTNITE", + "templateId": "Quest:Quest_BR_Interact_FORTNITE", + "objectives": [ + { + "name": "battlepass_interact_athena_FORTNITE_Letters_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_15", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_16", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_17", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_18", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_19", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_20", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_01", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W1_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W1_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w1_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w1_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Use_PortaFort", + "templateId": "Quest:Quest_BR_Use_PortaFort", + "objectives": [ + { + "name": "battlepass_interact_athena_portafort", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Damage_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_suppressed_weapon", + "count": 500 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Dance_ScavengerHunt_Cameras", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Cameras", + "objectives": [ + { + "name": "battlepass_dance_athena_location_cameras_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_cameras_11", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_explosives", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_TomatoTown", + "templateId": "Quest:Quest_BR_Eliminate_Location_TomatoTown", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tomatotown", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_GreasyGrove", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_GreasyGrove", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_greasygrove", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_GravityStones", + "templateId": "Quest:Quest_BR_Interact_GravityStones", + "objectives": [ + { + "name": "battlepass_interact_athena_gravitystones", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_02", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W2_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W2_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w2_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w2_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_Pistol", + "templateId": "Quest:Quest_BR_Damage_Pistol", + "objectives": [ + { + "name": "battlepass_damage_athena_player_pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tiltedtowers", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_sniper", + "count": 2 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_lonelylodge", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_RubberDuckies", + "templateId": "Quest:Quest_BR_Interact_RubberDuckies", + "objectives": [ + { + "name": "battlepass_interact_athena_rubberduckies_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_15", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_16", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_17", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_18", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_19", + "count": 1 + }, + { + "name": "battlepass_interact_athena_rubberduckies_20", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_03", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Revive", + "templateId": "Quest:Quest_BR_Revive", + "objectives": [ + { + "name": "battlepass_athena_revive_player", + "count": 5 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W3_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W3_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w3_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w3_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_AssaultRifle", + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_asssult", + "count": 1000 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_SnobbyShores", + "templateId": "Quest:Quest_BR_Eliminate_Location_SnobbyShores", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_snobbyshores", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Trap", + "templateId": "Quest:Quest_BR_Eliminate_Trap", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_trap", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_loot_ammobox_singlematch", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_walingwoods", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_04", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W4_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W4_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w4_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w4_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Visit_ScavengerHunt_StormCircles", + "templateId": "Quest:Quest_BR_Visit_ScavengerHunt_StormCircles", + "objectives": [ + { + "name": "battlepass_findcenter_location_stormcircle", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Dance_ScavengerHunt_Platforms", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Platforms", + "objectives": [ + { + "name": "battlepass_dance_athena_scavengerhunt_platforms", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "templateId": "Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_luckylanding", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_minigunlmg", + "count": 2 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_DustyDivot", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_DustyDivot", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_dustydivot", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_05", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W5_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W5_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w5_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w5_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Use_VendingMachine", + "templateId": "Quest:Quest_BR_Use_VendingMachine", + "objectives": [ + { + "name": "battlepass_interact_athena_vendingmachine", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_Shotgun", + "templateId": "Quest:Quest_BR_Damage_Shotgun", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun", + "count": 1000 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_RetailRow", + "templateId": "Quest:Quest_BR_Eliminate_Location_RetailRow", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_retailrow", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_SMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_smg", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_LootLake", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LootLake", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_lootlake", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_06", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_SupplyDrops", + "templateId": "Quest:Quest_BR_Interact_SupplyDrops", + "objectives": [ + { + "name": "battlepass_interact_athena_supply_drop", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W6_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W6_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w6_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w6_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Spray_SpecificTargets", + "templateId": "Quest:Quest_BR_Spray_SpecificTargets", + "objectives": [ + { + "name": "battlepass_spray_athena_heroposters_01", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_02", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_03", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_04", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_05", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_06", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_07", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_08", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_09", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_10", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_11", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_12", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_13", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_14", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_15", + "count": 1 + }, + { + "name": "battlepass_spray_athena_heroposters_16", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 250 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "templateId": "Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shiftyshafts", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_assault", + "count": 5 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_RiskyReels", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_RiskyReels", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_riskyreels", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ForagedItems", + "templateId": "Quest:Quest_BR_Interact_ForagedItems", + "objectives": [ + { + "name": "battlepass_interact_athena_forgeditems", + "count": 20 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_07", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W7_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W7_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w7_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w7_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Score_Goals", + "templateId": "Quest:Quest_BR_Score_Goals", + "objectives": [ + { + "name": "battlepass_athena_score_goals_01", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_02", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_03", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_04", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_05", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_06", + "count": 1 + }, + { + "name": "battlepass_athena_score_goals_07", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 250 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_PleasantPark", + "templateId": "Quest:Quest_BR_Eliminate_Location_PleasantPark", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pleasantpark", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_suppressed_weapon", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_saltysprings", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_Chests_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_athena_loot_chest_single_match", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_GniceGnomes", + "templateId": "Quest:Quest_BR_Interact_GniceGnomes", + "objectives": [ + { + "name": "battlepass_interact_athena_gnice_gnome_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_14", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_08", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W8_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W8_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w8_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w8_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Damage_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_explosives", + "count": 500 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_AnarchyAcres", + "templateId": "Quest:Quest_BR_Eliminate_Location_AnarchyAcres", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_anarchyacres", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shotgun", + "count": 4 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_moistymire", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_09", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W9_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W9_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w9_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w9_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Use_ShoppingCart", + "templateId": "Quest:Quest_BR_Use_ShoppingCart", + "objectives": [ + { + "name": "battlepass_athena_use_shoppingcart", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_location_mountain_summit_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_07", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_08", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_09", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_10", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_11", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_12", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_13", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_14", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_15", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_16", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_17", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_18", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_19", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_mountain_summit_20", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage_Enemy_Buildings", + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_buildings", + "count": 5000 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players", + "count": 10 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Eliminate_Location_FatalFields", + "templateId": "Quest:Quest_BR_Eliminate_Location_FatalFields", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_fatalfields", + "count": 3 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest", + "count": 1 + }, + { + "name": "battlepass_interact_athena_ammobox", + "count": 1 + }, + { + "name": "battlepass_interact_athena_supplydrop", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_junkjunction", + "count": 7 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_10", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_S4W10_Cumulative_CompleteAll", + "templateId": "Quest:Quest_BR_S4W10_Cumulative_CompleteAll", + "objectives": [ + { + "name": "battlepass_completed_s4w10_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s4w10_quest7", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Skydive_Rings", + "templateId": "Quest:Quest_BR_Skydive_Rings", + "objectives": [ + { + "name": "battlepass_skydive_athena_rings", + "count": 20 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01", + "objectives": [ + { + "name": "athena_season_levelup_progressive_b_01", + "count": 25 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02", + "objectives": [ + { + "name": "athena_season_levelup_progressive_b_02", + "count": 35 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03", + "objectives": [ + { + "name": "athena_season_levelup_progressive_b_03", + "count": 45 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04", + "objectives": [ + { + "name": "athena_season_levelup_progressive_b_04", + "count": 55 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + }, + { + "itemGuid": "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05", + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05", + "objectives": [ + { + "name": "athena_season_levelup_progressive_b_05", + "count": 80 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Damage", + "templateId": "Quest:Quest_BR_Damage", + "objectives": [ + { + "name": "battlepass_damage_athena_player", + "count": 5000 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Land_Locations_Different", + "templateId": "Quest:Quest_BR_Land_Locations_Different", + "objectives": [ + { + "name": "battlepass_land_athena_location_anarchyacres", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_dustydivot", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_flushfactory", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_greasygrove", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_moistymire", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_tomatotown", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_luckylanding", + "count": 1 + }, + { + "name": "battlepass_land_athena_location_riskyreels", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Outlive", + "templateId": "Quest:Quest_BR_Outlive", + "objectives": [ + { + "name": "battlepass_athena_outlive_players", + "count": 1000 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Place_Win", + "templateId": "Quest:Quest_BR_Place_Win", + "objectives": [ + { + "name": "battlepass_athena_win_match", + "count": 1 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Play", + "templateId": "Quest:Quest_BR_Play", + "objectives": [ + { + "name": "battlepass_athena_play_matches", + "count": 50 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Play_Min1Elimination", + "templateId": "Quest:Quest_BR_Play_Min1Elimination", + "objectives": [ + { + "name": "battlepass_complete_athena_with_killingblow", + "count": 10 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + }, + { + "itemGuid": "S4-Quest:Quest_BR_Play_Min1Friend", + "templateId": "Quest:Quest_BR_Play_Min1Friend", + "objectives": [ + { + "name": "battlepass_athena_friend", + "count": 10 + } + ], + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter" + } ] }, - { - "templateId": "Quest:Daily_DestroyFireTrucks", - "objectives": [ - "quest_reactive_destroyfiretruck_v2" + "Season5": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S5-ChallengeBundleSchedule:Schedule_LTM_Heist", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Heist", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_LTM_Heist" + ] + }, + { + "itemGuid": "S5-ChallengeBundleSchedule:Season5_Free_Schedule", + "templateId": "ChallengeBundleSchedule:Season5_Free_Schedule", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_S5_Week_001", + "S5-ChallengeBundle:QuestBundle_S5_Week_002", + "S5-ChallengeBundle:QuestBundle_S5_Week_003", + "S5-ChallengeBundle:QuestBundle_S5_Week_004", + "S5-ChallengeBundle:QuestBundle_S5_Week_005", + "S5-ChallengeBundle:QuestBundle_S5_Week_006", + "S5-ChallengeBundle:QuestBundle_S5_Week_007", + "S5-ChallengeBundle:QuestBundle_S5_Week_008", + "S5-ChallengeBundle:QuestBundle_S5_Week_009", + "S5-ChallengeBundle:QuestBundle_S5_Week_010" + ] + }, + { + "itemGuid": "S5-ChallengeBundleSchedule:Season5_Paid_Schedule", + "templateId": "ChallengeBundleSchedule:Season5_Paid_Schedule", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + ] + }, + { + "itemGuid": "S5-ChallengeBundleSchedule:Season5_ProgressiveA_Schedule", + "templateId": "ChallengeBundleSchedule:Season5_ProgressiveA_Schedule", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + ] + }, + { + "itemGuid": "S5-ChallengeBundleSchedule:Season5_ProgressiveB_Schedule", + "templateId": "ChallengeBundleSchedule:Season5_ProgressiveB_Schedule", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_LTM_Heist", + "templateId": "ChallengeBundle:QuestBundle_LTM_Heist", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Heist_Play_Matches", + "S5-Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "S5-Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Schedule_LTM_Heist" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_001", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Damage_SMG", + "S5-Quest:Quest_BR_Interact_SupplyLlamas", + "S5-Quest:Quest_BR_Eliminate_ThrownWeapon", + "S5-Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "S5-Quest:Quest_BR_Interact_Floating_Object", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "S5-Quest:Quest_BR_Eliminate_Location_RetailRow" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_002", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Damage_AssaultRifle", + "S5-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "S5-Quest:Quest_BR_Eliminate_Location_ParadisePalms", + "S5-Quest:Quest_BR_Score_Baskets", + "S5-Quest:Quest_BR_Interact_Chests_Location_LootLake", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "S5-Quest:Quest_BR_Eliminate_Weapon_SniperRifle" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_003", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Damage_SingleMatch", + "S5-Quest:Quest_BR_Use_Launchpad", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "S5-Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "S5-Quest:Quest_BR_Destroy_SpecificTargets", + "S5-Quest:Quest_BR_Eliminate_Location_HauntedHills", + "S5-Quest:Quest_BR_Eliminate_ExplosiveWeapon" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_004", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Build_Structures", + "S5-Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "S5-Quest:Quest_BR_Eliminate_Location_DustyDivot", + "S5-Quest:Quest_BR_Damage_SniperRifle", + "S5-Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "S5-Quest:Quest_BR_Eliminate_Weapon_Pistol" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_005", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "S5-Quest:Quest_BR_Use_RiftPortals", + "S5-Quest:Quest_BR_Eliminate_SingleMatch", + "S5-Quest:Quest_BR_Damage_ThrownWeapons", + "S5-Quest:Quest_BR_Score_TeeToGreen", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "S5-Quest:Quest_BR_Eliminate_Location_ShiftyShafts" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_006", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Damage_Headshot", + "S5-Quest:Quest_BR_Collect_BuildingResources", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "S5-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "S5-Quest:Quest_BR_Timed_Trials", + "S5-Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "S5-Quest:Quest_BR_Eliminate_Location_TiltedTowers" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_007", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "S5-Quest:Quest_BR_Interact_SupplyDrops", + "S5-Quest:Quest_BR_Eliminate_Weapon_SMG", + "S5-Quest:Quest_BR_Damage_Enemy_Buildings_C4", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "S5-Quest:Quest_BR_Eliminate_Location_LazyLinks" + ], + "questStages": [ + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_E" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_008", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Use_Trap", + "S5-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "S5-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "S5-Quest:Quest_BR_Damage_Pickaxe", + "S5-Quest:Quest_BR_Use_RiftPortal_DifferentLocations", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "S5-Quest:Quest_BR_Eliminate_QuestChain_01_A" + ], + "questStages": [ + "S5-Quest:Quest_BR_Eliminate_QuestChain_01_B", + "S5-Quest:Quest_BR_Eliminate_QuestChain_01_C" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_009", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Damage_ExplosiveWeapon", + "S5-Quest:Quest_BR_Score_StylePoints_Vehicle", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_A", + "S5-Quest:Quest_BR_Visit_StoneHeads", + "S5-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "S5-Quest:Quest_BR_Eliminate_Location_TomatoTemple" + ], + "questStages": [ + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_B", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_C", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_D", + "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_E" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S5_Week_010", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Interact_JigsawPuzzle", + "S5-Quest:Quest_BR_Interact_ForagedItems", + "S5-Quest:Quest_BR_Eliminate", + "S5-Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "S5-Quest:Quest_BR_Damage", + "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "S5-Quest:Quest_BR_Eliminate_QuestChain_02_A" + ], + "questStages": [ + "S5-Quest:Quest_BR_Eliminate_QuestChain_02_B", + "S5-Quest:Quest_BR_Eliminate_QuestChain_02_C" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Free_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S5_Cumulative", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_01", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_02", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_03", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_04", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_05", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_06", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_07", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_08", + "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_09" + ], + "questStages": [ + "S5-Quest:Quest_BR_S5_Cumulative_Quest1", + "S5-Quest:Quest_BR_S5_Cumulative_Quest2", + "S5-Quest:Quest_BR_S5_Cumulative_Quest3", + "S5-Quest:Quest_BR_S5_Cumulative_Quest4", + "S5-Quest:Quest_BR_S5_Cumulative_Quest5", + "S5-Quest:Quest_BR_S5_Cumulative_Quest6", + "S5-Quest:Quest_BR_S5_Cumulative_Quest7", + "S5-Quest:Quest_BR_S5_Cumulative_Quest8", + "S5-Quest:Quest_BR_S5_Cumulative_Quest9", + "S5-Quest:Quest_BR_S5_Cumulative_Final" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_Paid_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA", + "templateId": "ChallengeBundle:QuestBundle_S5_ProgressiveA", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_01", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_02", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_03", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_04", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_05" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_ProgressiveA_Schedule" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB", + "templateId": "ChallengeBundle:QuestBundle_S5_ProgressiveB", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_01", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_02", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_03", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_04", + "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_05" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Season5_ProgressiveB_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S5-Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "templateId": "Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "objectives": [ + { + "name": "ltm_heistbundle_damage_athena_player_withdiamond", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_LTM_Heist" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches", + "templateId": "Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches", + "objectives": [ + { + "name": "ltm_heistbundle_athena_pickupdiamond_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_LTM_Heist" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Heist_Play_Matches", + "templateId": "Quest:Quest_BR_Heist_Play_Matches", + "objectives": [ + { + "name": "ltm_heistbundle_athena_play_matches", + "count": 10 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_LTM_Heist" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_RetailRow", + "templateId": "Quest:Quest_BR_Eliminate_Location_RetailRow", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_retailrow", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_ThrownWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ThrownWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_thrownweapon", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_snobbyshores", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Floating_Object", + "templateId": "Quest:Quest_BR_Interact_Floating_Object", + "objectives": [ + { + "name": "battlepass_athena_generic_collect_a_01", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_02", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_03", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_04", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_05", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_06", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_07", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_08", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_09", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_10", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_11", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_12", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_13", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_14", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_15", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_16", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_17", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_18", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_19", + "count": 1 + }, + { + "name": "battlepass_athena_generic_collect_a_20", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_01", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_SupplyLlamas", + "templateId": "Quest:Quest_BR_Interact_SupplyLlamas", + "objectives": [ + { + "name": "battlepass_open_athena_supply_llama", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_001" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_AssaultRifle", + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_asssult", + "count": 1000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_ParadisePalms", + "templateId": "Quest:Quest_BR_Eliminate_Location_ParadisePalms", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_paradisepalms", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_sniper", + "count": 2 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_loot_ammobox_singlematch", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_LootLake", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LootLake", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_lootlake", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_02", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Score_Baskets", + "templateId": "Quest:Quest_BR_Score_Baskets", + "objectives": [ + { + "name": "battlepass_athena_score_basket_01", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_02", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_03", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_04", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_05", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_06", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_07", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_08", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_09", + "count": 1 + }, + { + "name": "battlepass_athena_score_basket_10", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_002" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_SingleMatch", + "templateId": "Quest:Quest_BR_Damage_SingleMatch", + "objectives": [ + { + "name": "battlepass_damage_athena_player_single_match", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Destroy_SpecificTargets", + "templateId": "Quest:Quest_BR_Destroy_SpecificTargets", + "objectives": [ + { + "name": "battlepass_destroy_specifictargets_01", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_02", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_03", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_04", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_05", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_06", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_explosives", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_HauntedHills", + "templateId": "Quest:Quest_BR_Eliminate_Location_HauntedHills", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_hauntedhills", + "count": 5 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_fatalfields", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_03", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Use_Launchpad", + "templateId": "Quest:Quest_BR_Use_Launchpad", + "objectives": [ + { + "name": "battlepass_interact_athena_jumppad", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_003" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Build_Structures", + "templateId": "Quest:Quest_BR_Build_Structures", + "objectives": [ + { + "name": "battlepass_build_athena_structures_any", + "count": 250 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_SniperRifle", + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_DustyDivot", + "templateId": "Quest:Quest_BR_Eliminate_Location_DustyDivot", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_dustydivot", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_flushfactory", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_04", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "templateId": "Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "objectives": [ + { + "name": "battlepass_touch_flamingrings_vehicle_01", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_02", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_03", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_04", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_05", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_06", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_07", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_08", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_09", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_10", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_004" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_ThrownWeapons", + "templateId": "Quest:Quest_BR_Damage_ThrownWeapons", + "objectives": [ + { + "name": "battlepass_damage_athena_player_thrownweapon", + "count": 300 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "templateId": "Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shiftyshafts", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_SingleMatch", + "templateId": "Quest:Quest_BR_Eliminate_SingleMatch", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_junkjunction", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_05", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Score_TeeToGreen", + "templateId": "Quest:Quest_BR_Score_TeeToGreen", + "objectives": [ + { + "name": "battlepass_athena_score_hole_01", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_02", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_03", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_04", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_05", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_06", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_07", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_08", + "count": 1 + }, + { + "name": "battlepass_athena_score_hole_09", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Use_RiftPortals", + "templateId": "Quest:Quest_BR_Use_RiftPortals", + "objectives": [ + { + "name": "battlepass_touch_athena_riftportal", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_005" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Collect_BuildingResources", + "templateId": "Quest:Quest_BR_Collect_BuildingResources", + "objectives": [ + { + "name": "battlepass_collect_building_resources", + "count": 3000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tiltedtowers", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_minigunlmg", + "count": 2 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_lonelylodge", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_06", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Timed_Trials", + "templateId": "Quest:Quest_BR_Timed_Trials", + "objectives": [ + { + "name": "battlepass_complete_timed_trials_01", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_02", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_03", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_04", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_05", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_06", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_07", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_006" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_Enemy_Buildings_C4", + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings_C4", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_buildings_c4", + "count": 8000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_LazyLinks", + "templateId": "Quest:Quest_BR_Eliminate_Location_LazyLinks", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_lazylinks", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_SMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_smg", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_pleasantpark", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_retailrow", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_luckylanding", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_greasygrove", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_01_E", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_E", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_paradisepalms", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_07", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_SupplyDrops", + "templateId": "Quest:Quest_BR_Interact_SupplyDrops", + "objectives": [ + { + "name": "battlepass_interact_athena_supply_drop", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_location_flushfactory", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_greasygrove", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lazylinks", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_riskyreels", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydivot", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_luckylanding", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_007" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 250 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_01_A", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_01_A", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_greasygrove", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_01_B", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_01_B", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_lonelylodge", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_01_C", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_01_C", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_fatalfields", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shotgun", + "count": 4 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_walingwoods", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_08", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Use_RiftPortal_DifferentLocations", + "templateId": "Quest:Quest_BR_Use_RiftPortal_DifferentLocations", + "objectives": [ + { + "name": "battlepass_athena_use_location_riftportal_01", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_02", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_03", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_04", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_05", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_06", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_07", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_08", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_09", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_10", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_11", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_12", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_13", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_14", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_15", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_16", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_17", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_18", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_19", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_20", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_21", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_22", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_23", + "count": 1 + }, + { + "name": "battlepass_athena_use_location_riftportal_24", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Use_Trap", + "templateId": "Quest:Quest_BR_Use_Trap", + "objectives": [ + { + "name": "battlepass_place_athena_trap", + "count": 10 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_008" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Damage_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_explosives", + "count": 500 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Location_TomatoTemple", + "templateId": "Quest:Quest_BR_Eliminate_Location_TomatoTemple", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tomatotemple", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_assault", + "count": 5 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_A", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_02_A", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_hauntedhills", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_B", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_02_B", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_shiftyshafts", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_C", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_02_C", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_lazylinks", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_D", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_02_D", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_tiltedtowers", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_QuestChain_02_E", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_02_E", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_riskyreels", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_09", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Score_StylePoints_Vehicle", + "templateId": "Quest:Quest_BR_Score_StylePoints_Vehicle", + "objectives": [ + { + "name": "battlepass_athena_score_stylepoints_vehicle", + "count": 150000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Visit_StoneHeads", + "templateId": "Quest:Quest_BR_Visit_StoneHeads", + "objectives": [ + { + "name": "battlepass_visit_athena_location_stonehead_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stonehead_07", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_009" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage", + "templateId": "Quest:Quest_BR_Damage", + "objectives": [ + { + "name": "battlepass_damage_athena_player", + "count": 5000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_multigame", + "count": 10 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_02_A", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_02_A", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_pleasantpark", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_02_B", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_02_B", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_wailingwoods", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Eliminate_QuestChain_02_C", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_02_C", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_luckylanding", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_saltysprings", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ForagedItems", + "templateId": "Quest:Quest_BR_Interact_ForagedItems", + "objectives": [ + { + "name": "battlepass_interact_athena_forgeditems", + "count": 20 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_JigsawPuzzle", + "templateId": "Quest:Quest_BR_Interact_JigsawPuzzle", + "objectives": [ + { + "name": "battlepass_interact_athena_pieces_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_15", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_16", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_17", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_18", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_19", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_20", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_10", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Week_010" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_01", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_01", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token1", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest1", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest1", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_01", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_02", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_02", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token2", + "count": 2 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest2", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest2", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_02", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_03", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_03", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token3", + "count": 3 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest3", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest3", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_03", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_04", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_04", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token4", + "count": 4 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest4", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest4", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_04", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_05", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_05", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token5", + "count": 5 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest5", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest5", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_05", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_06", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_06", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token6", + "count": 6 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest6", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest6", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_06", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_07", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_07", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token7", + "count": 7 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest7", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest7", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_07", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_08", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_08", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token8", + "count": 8 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest8", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest8", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_08", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_CollectTokens_09", + "templateId": "Quest:Quest_BR_S5_Cumulative_CollectTokens_09", + "objectives": [ + { + "name": "battlepass_season5_cumulative_token9", + "count": 9 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Quest9", + "templateId": "Quest:Quest_BR_S5_Cumulative_Quest9", + "objectives": [ + { + "name": "battlepass_interact_s5_cumulative_quest_09", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Cumulative_Final", + "templateId": "Quest:Quest_BR_S5_Cumulative_Final", + "objectives": [ + { + "name": "battlepass_completed_s5_cumulative_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest7", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest8", + "count": 1 + }, + { + "name": "battlepass_completed_s5_cumulative_quest9", + "count": 1 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_Cumulative" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_01", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_01", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_a_01", + "count": 10000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_02", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_02", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_a_02", + "count": 25000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_03", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_03", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_a_03", + "count": 50000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_04", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_04", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_a_04", + "count": 100000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_05", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveA_05", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_a_05", + "count": 200000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveA" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_01", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_01", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_b_01", + "count": 35000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_02", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_02", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_b_02", + "count": 75000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_03", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_03", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_b_03", + "count": 125000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_04", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_04", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_b_04", + "count": 250000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + }, + { + "itemGuid": "S5-Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_05", + "templateId": "Quest:Quest_BR_S5_Gain_SeasonXP_ProgressiveB_05", + "objectives": [ + { + "name": "athena_s5_season_gain_xp_progressive_b_05", + "count": 500000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_S5_ProgressiveB" + } ] }, - { - "templateId": "Quest:Daily_DestroyGnomes", - "objectives": [ - "quest_reactive_destroygnome_v2" + "Season6": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S6-ChallengeBundleSchedule:Season6_Free_Schedule", + "templateId": "ChallengeBundleSchedule:Season6_Free_Schedule", + "granted_bundles": [ + "S6-ChallengeBundle:QuestBundle_S6_Week_001", + "S6-ChallengeBundle:QuestBundle_S6_Week_002", + "S6-ChallengeBundle:QuestBundle_S6_Week_003", + "S6-ChallengeBundle:QuestBundle_S6_Week_004", + "S6-ChallengeBundle:QuestBundle_S6_Week_005", + "S6-ChallengeBundle:QuestBundle_S6_Week_006", + "S6-ChallengeBundle:QuestBundle_S6_Week_007", + "S6-ChallengeBundle:QuestBundle_S6_Week_008", + "S6-ChallengeBundle:QuestBundle_S6_Week_009", + "S6-ChallengeBundle:QuestBundle_S6_Week_010" + ] + }, + { + "itemGuid": "S6-ChallengeBundleSchedule:Season6_Paid_Schedule", + "templateId": "ChallengeBundleSchedule:Season6_Paid_Schedule", + "granted_bundles": [ + "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + ] + }, + { + "itemGuid": "S6-ChallengeBundleSchedule:Season6_ProgressiveA_Schedule", + "templateId": "ChallengeBundleSchedule:Season6_ProgressiveA_Schedule", + "granted_bundles": [ + "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + ] + }, + { + "itemGuid": "S6-ChallengeBundleSchedule:Season6_ProgressiveB_Schedule", + "templateId": "ChallengeBundleSchedule:Season6_ProgressiveB_Schedule", + "granted_bundles": [ + "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_001", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "S6-Quest:Quest_BR_Heal_CozyCampfire_", + "S6-Quest:Quest_BR_Interact_Chests_ChainSearch", + "S6-Quest:Quest_BR_Heal_Shields", + "S6-Quest:Quest_BR_Land_Junk_Chain_01A", + "S6-Quest:Quest_BR_Dance_ScavengerHunt_Streetlights", + "S6-Quest:Quest_BR_Eliminate_Location_Different" + ], + "questStages": [ + "S6-Quest:Quest_BR_Interact_SupplyDrops_ChainSearch", + "S6-Quest:Quest_BR_Interact_SupplyLlamas_ChainSearch", + "S6-Quest:Quest_BR_Land_Tomato_Chain_01B", + "S6-Quest:Quest_BR_Land_Tilted_Chain_01C", + "S6-Quest:Quest_BR_Land_Fatal_Chain_01D", + "S6-Quest:Quest_BR_Land_Flush_Chain_01E" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_002", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Visit_SevenSeals", + "S6-Quest:Quest_BR_Interact_SpookyMist_DifferentMatches", + "S6-Quest:Quest_BR_Damage_AR_Chain_A", + "S6-Quest:Quest_BR_Eliminate_MinDistance", + "S6-Quest:Quest_BR_Damage_Pistol", + "S6-Quest:Quest_BR_Eliminate_Weapon_SMG", + "S6-Quest:Quest_BR_Damage_Sniper_Hunting_Chain_A" + ], + "questStages": [ + "S6-Quest:Quest_BR_Damage_ARBurst_Chain_B", + "S6-Quest:Quest_BR_Damage_ARSilenced_Chain_C", + "S6-Quest:Quest_BR_Damage_Sniper_Bolt_Chain_B", + "S6-Quest:Quest_BR_Damage_Sniper_Heavy_Chain_C" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_003", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Revive_DifferentMatches", + "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "S6-Quest:Quest_BR_Eliminate_Trap", + "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "S6-Quest:Quest_BR_HitPlayer_With_TomatoEmote", + "S6-Quest:Quest_BR_Timed_Trials", + "S6-Quest:Quest_BR_Eliminate" + ], + "questStages": [ + "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_E", + "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_D", + "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_E" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_004", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Use_PortaFort", + "S6-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "S6-Quest:Quest_BR_RingDoorbell_DifferentHouses", + "S6-Quest:Quest_BR_Land_Chain_02A", + "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01A", + "S6-Quest:Quest_BR_Shoot_SpecificTargets", + "S6-Quest:Quest_BR_Eliminate_Location_SevenSeals" + ], + "questStages": [ + "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01B", + "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01C", + "S6-Quest:Quest_BR_Land_Chain_02B", + "S6-Quest:Quest_BR_Land_Chain_02C", + "S6-Quest:Quest_BR_Land_Chain_02D", + "S6-Quest:Quest_BR_Land_Chain_02E" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_005", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_RecordSpeed_RadarSigns", + "S6-Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "S6-Quest:Quest_BR_Damage_Chain_Shotgun_A", + "S6-Quest:Quest_BR_Eliminate_MaxDistance", + "S6-Quest:Quest_BR_Damage_SMG", + "S6-Quest:Quest_BR_Eliminate_Weapon_Minigun", + "S6-Quest:Quest_BR_Damage_Chain_Pistol_A" + ], + "questStages": [ + "S6-Quest:Quest_BR_Damage_Chain_Pistol_B", + "S6-Quest:Quest_BR_Damage_Chain_Pistol_C", + "S6-Quest:Quest_BR_Damage_Chain_Shotgun_B", + "S6-Quest:Quest_BR_Damage_Chain_Shotgun_C" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_006", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Use_FreezeTrap", + "S6-Quest:Quest_BR_Interact_Chests_Locations_Different", + "S6-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "S6-Quest:Quest_BR_Land_Chain_03A", + "S6-Quest:Quest_BR_Damage_Pickaxe", + "S6-Quest:Quest_BR_PianoChain_Visit_Map1", + "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey" + ], + "questStages": [ + "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold", + "S6-Quest:Quest_BR_Land_Chain_03B", + "S6-Quest:Quest_BR_Land_Chain_03C", + "S6-Quest:Quest_BR_Land_Chain_03D", + "S6-Quest:Quest_BR_Land_Chain_03E", + "S6-Quest:Quest_BR_PianoChain_Play_Piano1", + "S6-Quest:Quest_BR_PianoChain_Visit_Map2", + "S6-Quest:Quest_BR_PianoChain_Play_Piano2" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_007", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "S6-Quest:Quest_BR_Damage_Headshot", + "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_1", + "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_A", + "S6-Quest:Quest_BR_Skydive_Rings", + "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_A", + "S6-Quest:Quest_BR_Eliminate_Location_PleasantPark" + ], + "questStages": [ + "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_2", + "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_3", + "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_B", + "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_C", + "S6-Quest:Quest_BR_Interact_HealingItems_Chain_01_B", + "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_C", + "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_D" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_008", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchA", + "S6-Quest:Quest_BR_Dance_FishTrophy_DifferentNamedLocations", + "S6-Quest:Quest_BR_Eliminate_SixShooter_HeavyAssault", + "S6-Quest:Quest_BR_Destroy_SpecificTargets", + "S6-Quest:Quest_BR_TrickPoint_Vehicle", + "S6-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "S6-Quest:Quest_BR_Use_HookPadRift_Chain_A" + ], + "questStages": [ + "S6-Quest:Quest_BR_Use_HookPadRift_Chain_B", + "S6-Quest:Quest_BR_Use_HookPadRift_Chain_C", + "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchB", + "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchC", + "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchD", + "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchE" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_009", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_TrickPoint__Airtime_Vehicle", + "S6-Quest:Quest_BR_ScavengerHunt_PopBalloons_on_Clowns_DifferentLocations", + "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_A", + "S6-Quest:Quest_BR_Damage_ThrownWeapons", + "S6-Quest:Quest_BR_Damage_Enemy_Buildings_TNT", + "S6-Quest:Quest_BR_Eliminate_Weapon_Rocket_GrenadeLaucher", + "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_A" + ], + "questStages": [ + "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_B", + "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_C", + "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_B", + "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_C", + "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_D" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S6_Week_010", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_Build_Structures", + "S6-Quest:Quest_BR_Visit_ScavengerHunt_Three_Locs", + "S6-Quest:Quest_BR_Interact_Chests_Location_TiltedOrParadise", + "S6-Quest:Quest_BR_Place_MountedTurret", + "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_A", + "S6-Quest:Quest_BR_Timed_Trials_Vehicle", + "S6-Quest:Quest_BR_Eliminate_QuestChain_03_A" + ], + "questStages": [ + "S6-Quest:Quest_BR_Eliminate_QuestChain_03_B", + "S6-Quest:Quest_BR_Eliminate_QuestChain_03_C", + "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_B", + "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_C", + "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_D", + "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_E" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Free_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S6_Cumulative", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_01", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_02", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_03", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_04", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_05", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_06", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_07", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_08", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_09", + "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_10" + ], + "questStages": [ + "S6-Quest:Quest_BR_S6_Cumulative_Quest1", + "S6-Quest:Quest_BR_S6_Cumulative_Quest2", + "S6-Quest:Quest_BR_S6_Cumulative_Quest3", + "S6-Quest:Quest_BR_S6_Cumulative_Quest4", + "S6-Quest:Quest_BR_S6_Cumulative_Quest5", + "S6-Quest:Quest_BR_S6_Cumulative_Quest6", + "S6-Quest:Quest_BR_S6_Cumulative_Quest7", + "S6-Quest:Quest_BR_S6_Cumulative_Quest8", + "S6-Quest:Quest_BR_S6_Cumulative_Quest9", + "S6-Quest:Quest_BR_S6_Cumulative_Quest10" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_Paid_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA", + "templateId": "ChallengeBundle:QuestBundle_S6_ProgressiveA", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_01", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_02", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_03", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_04", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_05", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_01", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_02", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_03" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_ProgressiveA_Schedule" + }, + { + "itemGuid": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB", + "templateId": "ChallengeBundle:QuestBundle_S6_ProgressiveB", + "grantedquestinstanceids": [ + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_01", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_02", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_03", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_04", + "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_05", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_01", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_02", + "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_03" + ], + "challenge_bundle_schedule_id": "S6-ChallengeBundleSchedule:Season6_ProgressiveB_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S6-Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "templateId": "Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "objectives": [ + { + "name": "battlepass_collect_legendaryitem_differentmatches", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Dance_ScavengerHunt_Streetlights", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Streetlights", + "objectives": [ + { + "name": "battlepass_dance_athena_location_streetlights_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_11", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_12", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_13", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_14", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_15", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_16", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_17", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_18", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_19", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_streetlights_20", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Location_Different", + "templateId": "Quest:Quest_BR_Eliminate_Location_Different", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pleasantpartk", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_riskyreels", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_paradisepalms", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Heal_CozyCampfire_", + "templateId": "Quest:Quest_BR_Heal_CozyCampfire_", + "objectives": [ + { + "name": "battlepass_heal_athena_camp_fire", + "count": 150 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Heal_Shields", + "templateId": "Quest:Quest_BR_Heal_Shields", + "objectives": [ + { + "name": "battlepass_heal_athena_shields", + "count": 500 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_ChainSearch", + "templateId": "Quest:Quest_BR_Interact_Chests_ChainSearch", + "objectives": [ + { + "name": "battlepass_chain_search_chests", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_SupplyDrops_ChainSearch", + "templateId": "Quest:Quest_BR_Interact_SupplyDrops_ChainSearch", + "objectives": [ + { + "name": "battlepass_interact_athena_supply_drop_chainsearch", + "count": 2 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_SupplyLlamas_ChainSearch", + "templateId": "Quest:Quest_BR_Interact_SupplyLlamas_ChainSearch", + "objectives": [ + { + "name": "battlepass_open_athena_supply_llama_chainsearch", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Junk_Chain_01A", + "templateId": "Quest:Quest_BR_Land_Junk_Chain_01A", + "objectives": [ + { + "name": "battlepass_land_athena_location_junk_chain_01a", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Tomato_Chain_01B", + "templateId": "Quest:Quest_BR_Land_Tomato_Chain_01B", + "objectives": [ + { + "name": "battlepass_land_athena_location_tomato_chain_01b", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Tilted_Chain_01C", + "templateId": "Quest:Quest_BR_Land_Tilted_Chain_01C", + "objectives": [ + { + "name": "battlepass_land_athena_location_tilted_chain_01c", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Fatal_Chain_01D", + "templateId": "Quest:Quest_BR_Land_Fatal_Chain_01D", + "objectives": [ + { + "name": "battlepass_land_athena_location_fatal_chain_01d", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Flush_Chain_01E", + "templateId": "Quest:Quest_BR_Land_Flush_Chain_01E", + "objectives": [ + { + "name": "battlepass_land_athena_location_flush_chain_01e", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_001" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_AR_Chain_A", + "templateId": "Quest:Quest_BR_Damage_AR_Chain_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_ar_standard_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_ARBurst_Chain_B", + "templateId": "Quest:Quest_BR_Damage_ARBurst_Chain_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_ar_burst_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_ARSilenced_Chain_C", + "templateId": "Quest:Quest_BR_Damage_ARSilenced_Chain_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_ar_silenced_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Pistol", + "templateId": "Quest:Quest_BR_Damage_Pistol", + "objectives": [ + { + "name": "battlepass_damage_athena_player_pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Sniper_Hunting_Chain_A", + "templateId": "Quest:Quest_BR_Damage_Sniper_Hunting_Chain_A", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper_hunting_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Sniper_Bolt_Chain_B", + "templateId": "Quest:Quest_BR_Damage_Sniper_Bolt_Chain_B", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper_bolt_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Sniper_Heavy_Chain_C", + "templateId": "Quest:Quest_BR_Damage_Sniper_Heavy_Chain_C", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper_heavy_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_MinDistance", + "templateId": "Quest:Quest_BR_Eliminate_MinDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_mindistance", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_SMG", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_smg", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_SpookyMist_DifferentMatches", + "templateId": "Quest:Quest_BR_Interact_SpookyMist_DifferentMatches", + "objectives": [ + { + "name": "battlepass_interact_athena_spookymist", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_SevenSeals", + "templateId": "Quest:Quest_BR_Visit_SevenSeals", + "objectives": [ + { + "name": "battlepass_visit_athena_location_seal_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_07", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_002" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_multigame", + "count": 10 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Trap", + "templateId": "Quest:Quest_BR_Eliminate_Trap", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_trap", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_HitPlayer_With_TomatoEmote", + "templateId": "Quest:Quest_BR_HitPlayer_With_TomatoEmote", + "objectives": [ + { + "name": "battlepass_athena_hitplayer_tomatoemote", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_A", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_lonelylodge", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_B", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_retailrow", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_C", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_snobbyshores", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_D", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_fatalfields", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_QuestChain_01_E", + "templateId": "Quest:Quest_BR_Interact_Chests_QuestChain_01_E", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_questchain_pleasantpark", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Revive_DifferentMatches", + "templateId": "Quest:Quest_BR_Revive_DifferentMatches", + "objectives": [ + { + "name": "battlepass_athena_revive_player_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Timed_Trials", + "templateId": "Quest:Quest_BR_Timed_Trials", + "objectives": [ + { + "name": "battlepass_complete_timed_trials_01", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_02", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_03", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_04", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_05", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_06", + "count": 1 + }, + { + "name": "battlepass_complete_timed_trials_07", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_riskyreels_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_wailingwoods_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_paradisepalms_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydivot_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_greasygrove_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_D", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_D", + "objectives": [ + { + "name": "battlepass_visit_athena_location_lucklanding_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_E", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_E", + "objectives": [ + { + "name": "battlepass_visit_athena_location_snobbyshores_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_003" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01A", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01A", + "objectives": [ + { + "name": "battlepass_dance_athena_location_chain_01a_clocktower", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01B", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01B", + "objectives": [ + { + "name": "battlepass_dance_athena_location_chain_01b_pinktree", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01C", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Locations_Chain_01C", + "objectives": [ + { + "name": "battlepass_dance_athena_location_01c_throne", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Location_SevenSeals", + "templateId": "Quest:Quest_BR_Eliminate_Location_SevenSeals", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_sevenseals", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_ammo_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_tomatotown", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_riskyreels", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_02A", + "templateId": "Quest:Quest_BR_Land_Chain_02A", + "objectives": [ + { + "name": "battlepass_land_athena_location_greasy_chain_02a", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_02B", + "templateId": "Quest:Quest_BR_Land_Chain_02B", + "objectives": [ + { + "name": "battlepass_land_athena_location_wailing_chain_02b", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_02C", + "templateId": "Quest:Quest_BR_Land_Chain_02C", + "objectives": [ + { + "name": "battlepass_land_athena_location_dusty_chain_02c", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_02D", + "templateId": "Quest:Quest_BR_Land_Chain_02D", + "objectives": [ + { + "name": "battlepass_land_athena_location_pleasant_chain_02d", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_02E", + "templateId": "Quest:Quest_BR_Land_Chain_02E", + "objectives": [ + { + "name": "battlepass_land_athena_location_paradise_chain_02e", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_RingDoorbell_DifferentHouses", + "templateId": "Quest:Quest_BR_RingDoorbell_DifferentHouses", + "objectives": [ + { + "name": "battlepass_ringdoorbell_differenthouses", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Shoot_SpecificTargets", + "templateId": "Quest:Quest_BR_Shoot_SpecificTargets", + "objectives": [ + { + "name": "battlepass_shoot_specifictargets_01", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_02", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_03", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_04", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_05", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_06", + "count": 1 + }, + { + "name": "battlepass_shoot_specifictargets_07", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Use_PortaFort", + "templateId": "Quest:Quest_BR_Use_PortaFort", + "objectives": [ + { + "name": "battlepass_interact_athena_portafort", + "count": 5 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_004" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Pistol_A", + "templateId": "Quest:Quest_BR_Damage_Chain_Pistol_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_pistol_a", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Pistol_B", + "templateId": "Quest:Quest_BR_Damage_Chain_Pistol_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_pistol_b", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Pistol_C", + "templateId": "Quest:Quest_BR_Damage_Chain_Pistol_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_pistol_c", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Shotgun_A", + "templateId": "Quest:Quest_BR_Damage_Chain_Shotgun_A", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun_a_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Shotgun_B", + "templateId": "Quest:Quest_BR_Damage_Chain_Shotgun_B", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun_b_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Shotgun_C", + "templateId": "Quest:Quest_BR_Damage_Chain_Shotgun_C", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun_c_chain", + "count": 200 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_MaxDistance", + "templateId": "Quest:Quest_BR_Eliminate_MaxDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_maxdistance", + "count": 2 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_Minigun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Minigun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_minigun", + "count": 2 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_RecordSpeed_RadarSigns", + "templateId": "Quest:Quest_BR_RecordSpeed_RadarSigns", + "objectives": [ + { + "name": "battlepass_br_recordspeed_radarsigns_01", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_02", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_03", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_04", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_05", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_06", + "count": 1 + }, + { + "name": "battlepass_br_recordspeed_radarsigns_07", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "templateId": "Quest:Quest_BR_Touch_FlamingRings_Vehicle", + "objectives": [ + { + "name": "battlepass_touch_flamingrings_vehicle_01", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_02", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_03", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_04", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_05", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_06", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_07", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_08", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_09", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_vehicle_10", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_005" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 250 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_greyrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_greenrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_bluerarity", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_epicrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_goldrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shotgun", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_riskyreels", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_03A", + "templateId": "Quest:Quest_BR_Land_Chain_03A", + "objectives": [ + { + "name": "battlepass_land_athena_location_shifty_chain_03a", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_03B", + "templateId": "Quest:Quest_BR_Land_Chain_03B", + "objectives": [ + { + "name": "battlepass_land_athena_location_risky_chain_03b", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_03C", + "templateId": "Quest:Quest_BR_Land_Chain_03C", + "objectives": [ + { + "name": "battlepass_land_athena_location_retail_chain_03c", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_03D", + "templateId": "Quest:Quest_BR_Land_Chain_03D", + "objectives": [ + { + "name": "battlepass_land_athena_location_haunted_chain_03d", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_03E", + "templateId": "Quest:Quest_BR_Land_Chain_03E", + "objectives": [ + { + "name": "battlepass_land_athena_location_leaky_chain_02e", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_PianoChain_Visit_Map1", + "templateId": "Quest:Quest_BR_PianoChain_Visit_Map1", + "objectives": [ + { + "name": "battlepass_piano_chain_visit_map1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_PianoChain_Play_Piano1", + "templateId": "Quest:Quest_BR_PianoChain_Play_Piano1", + "objectives": [ + { + "name": "battlepass_piano_chain_play_piano_1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_PianoChain_Visit_Map2", + "templateId": "Quest:Quest_BR_PianoChain_Visit_Map2", + "objectives": [ + { + "name": "battlepass_piano_chain_visit_map2", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_PianoChain_Play_Piano2", + "templateId": "Quest:Quest_BR_PianoChain_Play_Piano2", + "objectives": [ + { + "name": "battlepass_piano_chain_play_piano_2", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Use_FreezeTrap", + "templateId": "Quest:Quest_BR_Use_FreezeTrap", + "objectives": [ + { + "name": "battlepass_place_athena_trap_freeze", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_006" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 500 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_1", + "templateId": "Quest:Quest_BR_Damage_SingleMatch_Chain_1", + "objectives": [ + { + "name": "battlepass_damage_athena_player_singlematch_chain_1", + "count": 300 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_2", + "templateId": "Quest:Quest_BR_Damage_SingleMatch_Chain_2", + "objectives": [ + { + "name": "battlepass_damage_athena_player_singlematch_chain_2", + "count": 400 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_SingleMatch_Chain_3", + "templateId": "Quest:Quest_BR_Damage_SingleMatch_Chain_3", + "objectives": [ + { + "name": "battlepass_damage_athena_player_singlematch_chain_3", + "count": 500 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_A", + "templateId": "Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_A", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_treesrockscars_trees", + "count": 50 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_B", + "templateId": "Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_B", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_treesrockscars_rocks", + "count": 25 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_C", + "templateId": "Quest:Quest_BR_Destroy_TreesRocksCars_Chain_01_C", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_treesrockscars_cars", + "count": 10 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Location_PleasantPark", + "templateId": "Quest:Quest_BR_Eliminate_Location_PleasantPark", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pleasantpark", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_loot_ammobox_singlematch", + "count": 7 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_A", + "templateId": "Quest:Quest_BR_Interact_HealingItems_QuestChain_01_A", + "objectives": [ + { + "name": "athena_battlepass_interact_athena_forageditems_apples", + "count": 5 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_HealingItems_Chain_01_B", + "templateId": "Quest:Quest_BR_Interact_HealingItems_Chain_01_B", + "objectives": [ + { + "name": "athena_battlepass_heal_player_bandage", + "count": 60 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_C", + "templateId": "Quest:Quest_BR_Interact_HealingItems_QuestChain_01_C", + "objectives": [ + { + "name": "athena_battlepass_heal_player_medkit", + "count": 100 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_HealingItems_QuestChain_01_D", + "templateId": "Quest:Quest_BR_Interact_HealingItems_QuestChain_01_D", + "objectives": [ + { + "name": "athena_battlepass_heal_player_slurpjuice", + "count": 50 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Skydive_Rings", + "templateId": "Quest:Quest_BR_Skydive_Rings", + "objectives": [ + { + "name": "battlepass_skydive_athena_rings", + "count": 20 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_007" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Dance_FishTrophy_DifferentNamedLocations", + "templateId": "Quest:Quest_BR_Dance_FishTrophy_DifferentNamedLocations", + "objectives": [ + { + "name": "battlepass_dance_athena_location_00", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_11", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_12", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_13", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_14", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_15", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_16", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_17", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_18", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_19", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_20", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_21", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_22", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_23", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Destroy_SpecificTargets", + "templateId": "Quest:Quest_BR_Destroy_SpecificTargets", + "objectives": [ + { + "name": "battlepass_destroy_specifictargets_01", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_02", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_03", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_04", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_05", + "count": 1 + }, + { + "name": "battlepass_destroy_specifictargets_06", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_SixShooter_HeavyAssault", + "templateId": "Quest:Quest_BR_Eliminate_SixShooter_HeavyAssault", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_sixshooter_heavyassault", + "count": 2 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_TrickPoint_Vehicle", + "templateId": "Quest:Quest_BR_TrickPoint_Vehicle", + "objectives": [ + { + "name": "battlepass_score_athena_trick_point_vehicle", + "count": 250000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Use_HookPadRift_Chain_A", + "templateId": "Quest:Quest_BR_Use_HookPadRift_Chain_A", + "objectives": [ + { + "name": "battlepass_hookpadrift_chain_a", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Use_HookPadRift_Chain_B", + "templateId": "Quest:Quest_BR_Use_HookPadRift_Chain_B", + "objectives": [ + { + "name": "battlepass_hookpadrift_chain_b", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Use_HookPadRift_Chain_C", + "templateId": "Quest:Quest_BR_Use_HookPadRift_Chain_C", + "objectives": [ + { + "name": "battlepass_hookpadrift_chain_c", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchA", + "templateId": "Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchA", + "objectives": [ + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_a0", + "count": 1 + }, + { + "name": "battlepass_chain_visit_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_a1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchB", + "templateId": "Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchB", + "objectives": [ + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_b0", + "count": 1 + }, + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_b1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchC", + "templateId": "Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchC", + "objectives": [ + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_c0", + "count": 1 + }, + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_c1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchD", + "templateId": "Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchD", + "objectives": [ + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_d0", + "count": 1 + }, + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_d1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchE", + "templateId": "Quest:Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchE", + "objectives": [ + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_e0", + "count": 1 + }, + { + "name": "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_e1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_location_flushfactory", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_greasygrove", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lazylinks", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_riskyreels", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydivot", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_luckylanding", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_008" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_A", + "templateId": "Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_A", + "objectives": [ + { + "name": "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_a", + "count": 100 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_B", + "templateId": "Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_B", + "objectives": [ + { + "name": "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_b", + "count": 100 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_C", + "templateId": "Quest:Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_C", + "objectives": [ + { + "name": "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_c", + "count": 100 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_Enemy_Buildings_TNT", + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings_TNT", + "objectives": [ + { + "name": "battlepass_damage_athena_enemy_building_tnt", + "count": 10000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Damage_ThrownWeapons", + "templateId": "Quest:Quest_BR_Damage_ThrownWeapons", + "objectives": [ + { + "name": "battlepass_damage_athena_player_thrownweapon", + "count": 300 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_Weapon_Rocket_GrenadeLaucher", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Rocket_GrenadeLaucher", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_rocket_or_grenadelauncher_rocket", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_A", + "templateId": "Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_A", + "objectives": [ + { + "name": "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_a", + "count": 5 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_B", + "templateId": "Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_B", + "objectives": [ + { + "name": "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_b", + "count": 75 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_C", + "templateId": "Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_C", + "objectives": [ + { + "name": "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_c", + "count": 100 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_D", + "templateId": "Quest:Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_D", + "objectives": [ + { + "name": "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_d", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_ScavengerHunt_PopBalloons_on_Clowns_DifferentLocations", + "templateId": "Quest:Quest_BR_ScavengerHunt_PopBalloons_on_Clowns_DifferentLocations", + "objectives": [ + { + "name": "battlepass_popballoons_athena_differentlocations_00", + "count": 1 + }, + { + "name": "battlepass_popballoons_athena_differentlocations_01", + "count": 1 + }, + { + "name": "battlepass_popballoons_athena_differentlocations_02", + "count": 1 + }, + { + "name": "battlepass_popballoons_athena_differentlocations_03", + "count": 1 + }, + { + "name": "battlepass_popballoons_athena_differentlocations_04", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_TrickPoint__Airtime_Vehicle", + "templateId": "Quest:Quest_BR_TrickPoint__Airtime_Vehicle", + "objectives": [ + { + "name": "battlepass_damage_athena_trick_point_airtime_vehicle", + "count": 30 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_009" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Build_Structures", + "templateId": "Quest:Quest_BR_Build_Structures", + "objectives": [ + { + "name": "battlepass_build_athena_structures_any", + "count": 250 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_QuestChain_03_A", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_03_A", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_03_shotgun", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_QuestChain_03_B", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_03_B", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_03_assaultrifle", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Eliminate_QuestChain_03_C", + "templateId": "Quest:Quest_BR_Eliminate_QuestChain_03_C", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_questchain_03_pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Interact_Chests_Location_TiltedOrParadise", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_TiltedOrParadise", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_tilted_or_paradise", + "count": 7 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_A", + "templateId": "Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_A", + "objectives": [ + { + "name": "battlepass_land_chain_lazysnobbyluckylonelysalty_a", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_B", + "templateId": "Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_B", + "objectives": [ + { + "name": "battlepass_land_chain_lazysnobbyluckylonelysalty_b", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_C", + "templateId": "Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_C", + "objectives": [ + { + "name": "battlepass_land_chain_lazysnobbyluckylonelysalty_c", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_D", + "templateId": "Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_D", + "objectives": [ + { + "name": "battlepass_land_chain_lazysnobbyluckylonelysalty_d", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_E", + "templateId": "Quest:Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_E", + "objectives": [ + { + "name": "battlepass_land_chain_lazysnobbyluckylonelysalty_e", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Place_MountedTurret", + "templateId": "Quest:Quest_BR_Place_MountedTurret", + "objectives": [ + { + "name": "battlepass_place_athena_trap_mounted_turret", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Timed_Trials_Vehicle", + "templateId": "Quest:Quest_BR_Timed_Trials_Vehicle", + "objectives": [ + { + "name": "complete_timed_trial_vehicle_01", + "count": 1 + }, + { + "name": "complete_timed_trial_vehicle_02", + "count": 1 + }, + { + "name": "complete_timed_trial_vehicle_03", + "count": 1 + }, + { + "name": "complete_timed_trial_vehicle_04", + "count": 1 + }, + { + "name": "complete_timed_trial_vehicle_05", + "count": 1 + }, + { + "name": "complete_timed_trial_vehicle_06", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_Visit_ScavengerHunt_Three_Locs", + "templateId": "Quest:Quest_BR_Visit_ScavengerHunt_Three_Locs", + "objectives": [ + { + "name": "battlepass_visit_location_vikingship", + "count": 1 + }, + { + "name": "battlepass_visit_location_camel", + "count": 1 + }, + { + "name": "battlepass_visit_location_crashed_battlebus", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Week_010" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_01", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_01", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token1", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest1", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest1", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_01", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_02", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_02", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token2", + "count": 2 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest2", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest2", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_02", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_03", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_03", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token3", + "count": 3 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest3", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest3", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_03", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_04", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_04", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token4", + "count": 4 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest4", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest4", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_04", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_05", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_05", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token5", + "count": 5 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest5", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest5", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_05", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_06", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_06", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token6", + "count": 6 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest6", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest6", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_06", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_07", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_07", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token7", + "count": 7 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest7", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest7", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_07", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_08", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_08", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token8", + "count": 8 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest8", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest8", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_08", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_09", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_09", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token9", + "count": 9 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest9", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest9", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_09", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_CollectTokens_10", + "templateId": "Quest:Quest_BR_S6_Cumulative_CollectTokens_10", + "objectives": [ + { + "name": "battlepass_season6_cumulative_token10", + "count": 10 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Cumulative_Quest10", + "templateId": "Quest:Quest_BR_S6_Cumulative_Quest10", + "objectives": [ + { + "name": "battlepass_interact_s6_cumulative_quest_10", + "count": 1 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_Cumulative" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_01", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_01", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_a_01", + "count": 10 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_02", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_02", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_a_02", + "count": 25 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_03", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_03", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_a_03", + "count": 50 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_01", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 20000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_02", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 50000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_03", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 90000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_04", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 140000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_05", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveA_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 200000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveA" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_01", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_01", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_b_01", + "count": 20 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_02", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_02", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_b_02", + "count": 40 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_03", + "templateId": "Quest:Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_03", + "objectives": [ + { + "name": "athena_s6_season_complete_weeklychallenges_progressive_b_03", + "count": 60 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_01", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 30000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_02", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 70000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_03", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 120000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_04", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 180000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + }, + { + "itemGuid": "S6-Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_05", + "templateId": "Quest:Quest_BR_S6_Gain_SeasonXP_ProgressiveB_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 250000 + } + ], + "challenge_bundle_id": "S6-ChallengeBundle:QuestBundle_S6_ProgressiveB" + } ] }, - { - "templateId": "Quest:Daily_DestroyPropaneTanks", - "objectives": [ - "quest_reactive_destroypropane_v2" + "Season7": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S7-ChallengeBundleSchedule:Schedule_14DaysOfFortnite", + "templateId": "ChallengeBundleSchedule:Schedule_14DaysOfFortnite", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Schedule_Festivus", + "templateId": "ChallengeBundleSchedule:Schedule_Festivus", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_Festivus" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Schedule_WinterDeimos", + "templateId": "ChallengeBundleSchedule:Schedule_WinterDeimos", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_WinterDeimos" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_Free_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_Free_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_Week_001", + "S7-ChallengeBundle:QuestBundle_S7_Week_002", + "S7-ChallengeBundle:QuestBundle_S7_Week_003", + "S7-ChallengeBundle:QuestBundle_S7_Week_004", + "S7-ChallengeBundle:QuestBundle_S7_Week_005", + "S7-ChallengeBundle:QuestBundle_S7_Week_006", + "S7-ChallengeBundle:QuestBundle_S7_Week_007", + "S7-ChallengeBundle:QuestBundle_S7_Week_008", + "S7-ChallengeBundle:QuestBundle_S7_Week_009", + "S7-ChallengeBundle:QuestBundle_S7_Week_010" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_IceKing_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_IceKing_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_IceKing" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_OT_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_OT_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_Overtime" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_Paid_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_Paid_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_ProgressiveA_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_ProgressiveA_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper", + "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + ] + }, + { + "itemGuid": "S7-ChallengeBundleSchedule:Season7_SgtWinter_Schedule", + "templateId": "ChallengeBundleSchedule:Season7_SgtWinter_Schedule", + "granted_bundles": [ + "S7-ChallengeBundle:QuestBundle_S7_SgtWinter" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite", + "templateId": "ChallengeBundle:QuestBundle_14DaysOfFortnite", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_FDF_Play_Creative_Mode", + "S7-Quest:Quest_BR_FDF_Visit_Giant_Candy_Canes", + "S7-Quest:Quest_BR_FDF_Play_Match_Friends", + "S7-Quest:Quest_BR_FDF_HitPlayer_With_Snowball", + "S7-Quest:Quest_BR_FDF_Fly_Biplane_Rings", + "S7-Quest:Quest_BR_FDF_Interact_Goose_Eggs", + "S7-Quest:Quest_BR_FDF_Use_Porta_Gift", + "S7-Quest:Quest_BR_FDF_Damage_Weapons_Different", + "S7-Quest:Quest_BR_FDF_Dance_Christmas_Trees", + "S7-Quest:Quest_BR_FDF_TrickPoint_Vehicle_Snowboard", + "S7-Quest:Quest_BR_FDF_Thank_Bus_Driver_DifferentMatches", + "S7-Quest:Quest_BR_FDF_Destory_Snowflake_Decorations", + "S7-Quest:Quest_BR_FDF_Use_Tool_Creative_Mode", + "S7-Quest:Quest_BR_FDF_Interact_Chests_Search" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Schedule_14DaysOfFortnite" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_Festivus", + "templateId": "ChallengeBundle:QuestBundle_Festivus", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Festivus_Interact_Poster", + "S7-Quest:Quest_BR_Festivus_Visit_Stage", + "S7-Quest:Quest_BR_Festivus_Dance_Three_Locations" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Schedule_Festivus" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_WinterDeimos", + "templateId": "ChallengeBundle:QuestBundle_WinterDeimos", + "grantedquestinstanceids": [ + "S7-Quest:Quest_FNWD_CompleteQuests", + "S7-Quest:Quest_FNWD_Elim_AI_Fiend", + "S7-Quest:Quest_FNWD_Dam_ExplosiveWeapons_AI", + "S7-Quest:Quest_FNWD_Elim_AI_Brute", + "S7-Quest:Quest_FNWD_Dam_PistolAR_AI", + "S7-Quest:Quest_FNWD_Elim_AI_Throwers", + "S7-Quest:Quest_FNWD_Elim_AI_Golden", + "S7-Quest:Quest_FNWD_Dam_AI_SingleMatch", + "S7-Quest:Quest_FNWD_Destroy_IceFragments_DifferentMatches", + "S7-Quest:Quest_FNWD_Elim_AI_Elite", + "S7-Quest:Quest_FNWD_Dam_ShotgunSMG_AI", + "S7-Quest:Quest_FNWD_Elim_AI", + "S7-Quest:Quest_FNWD_Dam_AI" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Schedule_WinterDeimos" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_001", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Collect_Item_All_Rarity", + "S7-Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "S7-Quest:Quest_BR_Play_Min1Elimination", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_A", + "S7-Quest:Quest_BR_Damage_Headshot", + "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_A", + "S7-Quest:Quest_BR_Eliminate_Location_Different" + ], + "questStages": [ + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_B", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_C", + "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_B", + "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_C" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_002", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Interact_Chests_Locations_Different", + "S7-Quest:Quest_BR_Damage_Weapons_Different", + "S7-Quest:Quest_BR_eliminate_TwoLocations_01", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "S7-Quest:Quest_BR_PianoChain_Play_Piano1", + "S7-Quest:Quest_BR_Dance_ScavengerHunt_DanceOff_Abandoned_Mansion", + "S7-Quest:Quest_BR_Eliminate_MinDistance" + ], + "questStages": [ + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_003", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Use_Zipline_DifferentMatches", + "S7-Quest:Quest_BR_Land_Chain_01_A", + "S7-Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_PolarTomato", + "S7-Quest:Quest_BR_RingDoorbell_DifferentHouses", + "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "S7-Quest:Quest_BR_Chain_WeaponDamage_01_A" + ], + "questStages": [ + "S7-Quest:Quest_BR_Chain_WeaponDamage_01_B", + "S7-Quest:Quest_BR_Chain_WeaponDamage_01_C", + "S7-Quest:Quest_BR_Land_Chain_01_B", + "S7-Quest:Quest_BR_Land_Chain_01_C", + "S7-Quest:Quest_BR_Land_Chain_01_D", + "S7-Quest:Quest_BR_Land_Chain_01_E" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_004", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Use_Biplane", + "S7-Quest:Quest_BR_Interact_Fireworks", + "S7-Quest:Quest_BR_Eliminate_Location_ExpeditionOutposts", + "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_Chairs", + "S7-Quest:Quest_BR_Damage_Pickaxe", + "S7-Quest:Quest_BR_Eliminate_TwoLocations_03", + "S7-Quest:Quest_BR_Chain_Interact_NOMS_01" + ], + "questStages": [ + "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_TelephonePoles", + "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_WoodPalettes", + "S7-Quest:Quest_BR_Chain_Interact_NOMS_02", + "S7-Quest:Quest_BR_Chain_Interact_NOMS_03", + "S7-Quest:Quest_BR_Chain_Interact_NOMS_04", + "S7-Quest:Quest_BR_Chain_Visit_NOMS_05" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_005", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Land_Chain_02A", + "S7-Quest:Quest_BR_Damage_Enemy_Buildings", + "S7-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_A", + "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseWailing", + "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "S7-Quest:Quest_BR_Eliminate_MaxDistance" + ], + "questStages": [ + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_B", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_C", + "S7-Quest:Quest_BR_Land_Chain_02B", + "S7-Quest:Quest_BR_Land_Chain_02C", + "S7-Quest:Quest_BR_Land_Chain_02D", + "S7-Quest:Quest_BR_Land_Chain_02E" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_006", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "S7-Quest:Quest_BR_Interact_GniceGnomes", + "S7-Quest:Quest_BR_Eliminate_TwoLocations_02", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "S7-Quest:Quest_BR_Throw_PuckToy_MinDistance", + "S7-Quest:Quest_BR_Damage_Chain_02_A", + "S7-Quest:Quest_BR_Damage_Weapons_Different_AllTypes" + ], + "questStages": [ + "S7-Quest:Quest_BR_Damage_Chain_02_B", + "S7-Quest:Quest_BR_Damage_Chain_02_C", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_007", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Visit_ExplorerOutposts", + "S7-Quest:Quest_BR_Use_RiftPortals", + "S7-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "S7-Quest:Quest_BR_Land_Chain_03A", + "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_LeakyFrosty", + "S7-Quest:Quest_BR_Destroy_Biplanes", + "S7-Quest:Quest_BR_Damage_Chain_03_A" + ], + "questStages": [ + "S7-Quest:Quest_BR_Damage_Chain_03_B", + "S7-Quest:Quest_BR_Damage_Chain_03_C", + "S7-Quest:Quest_BR_Land_Chain_03B", + "S7-Quest:Quest_BR_Land_Chain_03C", + "S7-Quest:Quest_BR_Land_Chain_03D", + "S7-Quest:Quest_BR_Land_Chain_03E" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_008", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Use_Campfire_Or_Launchpad", + "S7-Quest:Quest_BR_Build_Structures", + "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_ShiftyLonely", + "S7-Quest:Quest_BR_Damage_Passenger_Vehicle", + "S7-Quest:Quest_BR_Eliminate_ExplosiveWeapon" + ], + "questStages": [ + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_009", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Use_Snowman", + "S7-Quest:Quest_BR_Land_Chain_04A", + "S7-Quest:Quest_BR_Eliminate_TwoLocations_04", + "S7-Quest:Quest_BR_Destroy_GoldBalloons", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_A", + "S7-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "S7-Quest:Quest_BR_Timed_Trials_Stormwing" + ], + "questStages": [ + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_B", + "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_C", + "S7-Quest:Quest_BR_Land_Chain_04B", + "S7-Quest:Quest_BR_Land_Chain_04C", + "S7-Quest:Quest_BR_Land_Chain_04D", + "S7-Quest:Quest_BR_Land_Chain_04E" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S7_Week_010", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_Use_Turret_Or_DamageTrap", + "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_LazyDusty", + "S7-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "S7-Quest:Quest_BR_Damage_ScopedWeapon", + "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_A", + "S7-Quest:Quest_BR_Visit_ExplorerOutposts_SingleMatch", + "S7-Quest:Quest_BR_Hit_Enemies_Boogie_ChillerGrenade" + ], + "questStages": [ + "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_B", + "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_C" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Free_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_IceKing", + "templateId": "ChallengeBundle:QuestBundle_S7_IceKing", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_IceKing_Outlive_01", + "S7-Quest:Quest_BR_S7_IceKing_Outlive_02", + "S7-Quest:Quest_BR_S7_IceKing_Outlive_03", + "S7-Quest:Quest_BR_S7_IceKing_Outlive_04", + "S7-Quest:Quest_BR_S7_IceKing_Outlive_05", + "S7-Quest:Quest_BR_S7_IceKing_Outlive_06" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_IceKing_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Overtime", + "templateId": "ChallengeBundle:QuestBundle_S7_Overtime", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_01", + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_03", + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_05", + "S7-Quest:Quest_BR_OT_CompleteChallenges", + "S7-Quest:Quest_BR_OT_play_featured_creative", + "S7-Quest:Quest_BR_Damage_Assault_Or_Pistol", + "S7-Quest:Quest_BR_OT_Search_Motel_RVPark", + "S7-Quest:Quest_BR_OT_Top15_Duos_WithFriend", + "S7-Quest:Quest_BR_OT_RegainHealth_Campfire_DifferentMatches", + "S7-Quest:Quest_BR_Visit_NamedLocations", + "S7-Quest:Quest_BR_OT_Search_SupplyDrop_DifferentMatches", + "S7-Quest:Quest_BR_Revive_DifferentMatches", + "S7-Quest:Quest_BR_OT_Visit_Waterfalls", + "S7-Quest:Quest_BR_Damage_Shotgun_Or_SMG", + "S7-Quest:Quest_BR_OT_Search_Chests_Ammo_TheBlock", + "S7-Quest:Quest_BR_OT_Top10_Squads_WithFriend", + "S7-Quest:Quest_BR_OT_Play_DriftboardLTM_WithFriend", + "S7-Quest:Quest_BR_OT_Thank_Bus_Driver_DifferentMatches", + "S7-Quest:Quest_BR_OT_Search_Chests_Ammo_Racetrack_Danceclub", + "S7-Quest:Quest_BR_OT_Outlast_75_SingleMatch" + ], + "questStages": [ + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_02", + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_04", + "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_06" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_OT_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S7_Cumulative", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_Cumulative_Complete_WeeklyChallenges_01", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_001", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_002", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_003", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_004", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_005", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_006", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_007", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_008", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_009", + "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_010" + ], + "questStages": [ + "S7-Quest:Quest_BR_S7_Cumulative_Quest1", + "S7-Quest:Quest_BR_S7_Cumulative_Quest2", + "S7-Quest:Quest_BR_S7_Cumulative_Quest3", + "S7-Quest:Quest_BR_S7_Cumulative_Quest4", + "S7-Quest:Quest_BR_S7_Cumulative_Quest5", + "S7-Quest:Quest_BR_S7_Cumulative_Quest6", + "S7-Quest:Quest_BR_S7_Cumulative_Quest7", + "S7-Quest:Quest_BR_S7_Cumulative_Quest8", + "S7-Quest:Quest_BR_S7_Cumulative_Quest9", + "S7-Quest:Quest_BR_S7_Cumulative_Quest10", + "S7-Quest:Quest_BR_S7_Cumulative_Final" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_Paid_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper", + "templateId": "ChallengeBundle:QuestBundle_S7_ArcticSniper", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_01", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_02", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_03", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_04", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_05", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_06", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_07", + "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_08", + "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_01", + "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_02", + "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_03" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_ProgressiveA_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_NeonCat", + "templateId": "ChallengeBundle:QuestBundle_S7_NeonCat", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_01", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_02", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_03", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_04", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_05", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_06", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_07", + "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_08", + "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_01", + "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_02", + "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_03" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_ProgressiveA_Schedule" + }, + { + "itemGuid": "S7-ChallengeBundle:QuestBundle_S7_SgtWinter", + "templateId": "ChallengeBundle:QuestBundle_S7_SgtWinter", + "grantedquestinstanceids": [ + "S7-Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_01", + "S7-Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_02" + ], + "challenge_bundle_schedule_id": "S7-ChallengeBundleSchedule:Season7_SgtWinter_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Damage_Weapons_Different", + "templateId": "Quest:Quest_BR_FDF_Damage_Weapons_Different", + "objectives": [ + { + "name": "FDF_damage_athena_weapons_different_assault_standard", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_minigun", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_assault_burst", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_assault_scoped", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_grenade_launcher", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_rocket_launcher", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_quad_launcher", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_pistol_handcannon", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_pistol_standard", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_pistol_suppressed", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_shotgun_tactical", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_shotgun_heavy", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_shotgun_pump", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_sniper_bolt", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_sniper_hunting", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_assault_thermal", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_smg_pdw", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_sniper_heavy", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_assault_silenced", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_pistol_sixshooter", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_assault_heavy", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_sword", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_sniper_silenced", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_grenade_standard", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_grenade_gas", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_grenade_tnt", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_trap_spike", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_turret", + "count": 1 + }, + { + "name": "FDF_damage_athena_weapons_different_smg_mp", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Dance_Christmas_Trees", + "templateId": "Quest:Quest_BR_FDF_Dance_Christmas_Trees", + "objectives": [ + { + "name": "FDF_dance_athena_christmas_tree_01", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_02", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_03", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_04", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_05", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_06", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_07", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_08", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_09", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_10", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_11", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_12", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_13", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_14", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_15", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_16", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_17", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_18", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_19", + "count": 1 + }, + { + "name": "FDF_dance_athena_christmas_tree_20", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Destory_Snowflake_Decorations", + "templateId": "Quest:Quest_BR_FDF_Destory_Snowflake_Decorations", + "objectives": [ + { + "name": "FDF_destroy_athena_snowflake_decor", + "count": 12 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Fly_Biplane_Rings", + "templateId": "Quest:Quest_BR_FDF_Fly_Biplane_Rings", + "objectives": [ + { + "name": "FDF_fly_athena_biplane_rings_01", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_02", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_03", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_04", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_05", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_06", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_07", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_08", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_09", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_10", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_11", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_12", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_13", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_14", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_15", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_16", + "count": 1 + }, + { + "name": "FDF_fly_athena_biplane_rings_17", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_HitPlayer_With_Snowball", + "templateId": "Quest:Quest_BR_FDF_HitPlayer_With_Snowball", + "objectives": [ + { + "name": "FDF_hitplayer_athena_snowball", + "count": 4 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Interact_Chests_Search", + "templateId": "Quest:Quest_BR_FDF_Interact_Chests_Search", + "objectives": [ + { + "name": "FDF_interact_athena_chests", + "count": 14 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Interact_Goose_Eggs", + "templateId": "Quest:Quest_BR_FDF_Interact_Goose_Eggs", + "objectives": [ + { + "name": "FDF_interact_athena_goose_eggs_01", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_02", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_03", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_04", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_05", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_06", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_07", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_08", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_09", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_10", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_11", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_12", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_13", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_14", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_15", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_16", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_17", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_18", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_19", + "count": 1 + }, + { + "name": "FDF_interact_athena_goose_eggs_20", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Play_Creative_Mode", + "templateId": "Quest:Quest_BR_FDF_Play_Creative_Mode", + "objectives": [ + { + "name": "FDF_play_athena_creative_mode", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Play_Match_Friends", + "templateId": "Quest:Quest_BR_FDF_Play_Match_Friends", + "objectives": [ + { + "name": "FDF_play_athena_match_friends", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Thank_Bus_Driver_DifferentMatches", + "templateId": "Quest:Quest_BR_FDF_Thank_Bus_Driver_DifferentMatches", + "objectives": [ + { + "name": "FDF_thank_athena_bus_driver_differentmatches", + "count": 11 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_TrickPoint_Vehicle_Snowboard", + "templateId": "Quest:Quest_BR_FDF_TrickPoint_Vehicle_Snowboard", + "objectives": [ + { + "name": "FDF_tickpoint_athena_vehicle_dustydivot", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_fatalfields", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_flushfactory", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_frostyflights", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_greasygrove", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_happyhamlet", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_hauntedhills", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_junkjunction", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_lazylinks", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_lonelylodge", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_lootlake", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_lucklanding", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_moistymire", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_paradisepalms", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_pleasantpark", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_polarpeak", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_retailrow", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_riskyreels", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_saltysprings", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_shiftyshafts", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_snobbyshores", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_tiltedtowers", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_tomatotemple", + "count": 1 + }, + { + "name": "FDF_tickpoint_athena_vehicle_wailingwoods", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Use_Porta_Gift", + "templateId": "Quest:Quest_BR_FDF_Use_Porta_Gift", + "objectives": [ + { + "name": "FDF_use_athena_portagift", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Use_Tool_Creative_Mode", + "templateId": "Quest:Quest_BR_FDF_Use_Tool_Creative_Mode", + "objectives": [ + { + "name": "FDF_use_athena_tool_creative_mode", + "count": 13 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_FDF_Visit_Giant_Candy_Canes", + "templateId": "Quest:Quest_BR_FDF_Visit_Giant_Candy_Canes", + "objectives": [ + { + "name": "FDF_visit_athena_giant_candy_cane_01", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_02", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_03", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_04", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_05", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_06", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_07", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_08", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_09", + "count": 1 + }, + { + "name": "FDF_visit_athena_giant_candy_cane_10", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_14DaysOfFortnite" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Festivus_Dance_Three_Locations", + "templateId": "Quest:Quest_BR_Festivus_Dance_Three_Locations", + "objectives": [ + { + "name": "athena_festivus_dance_3_locations_a", + "count": 1 + }, + { + "name": "athena_festivus_dance_3_locations_b", + "count": 1 + }, + { + "name": "athena_festivus_dance_3_locations_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_Festivus" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Festivus_Interact_Poster", + "templateId": "Quest:Quest_BR_Festivus_Interact_Poster", + "objectives": [ + { + "name": "athena_festivus_interact_poster", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_Festivus" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Festivus_Visit_Stage", + "templateId": "Quest:Quest_BR_Festivus_Visit_Stage", + "objectives": [ + { + "name": "athena_festivus_visit_stage", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_Festivus" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_CompleteQuests", + "templateId": "Quest:Quest_FNWD_CompleteQuests", + "objectives": [ + { + "name": "winter_deimos_quest_completequests_tokens", + "count": 6 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Dam_AI", + "templateId": "Quest:Quest_FNWD_Dam_AI", + "objectives": [ + { + "name": "winter_deimos_damage_athena_ai", + "count": 20000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Dam_AI_SingleMatch", + "templateId": "Quest:Quest_FNWD_Dam_AI_SingleMatch", + "objectives": [ + { + "name": "winter_deimos_damage_athena_ai_single_match", + "count": 2000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Dam_ExplosiveWeapons_AI", + "templateId": "Quest:Quest_FNWD_Dam_ExplosiveWeapons_AI", + "objectives": [ + { + "name": "winter_deimos_damage_athena_ai_explosive_weapons", + "count": 5000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Dam_PistolAR_AI", + "templateId": "Quest:Quest_FNWD_Dam_PistolAR_AI", + "objectives": [ + { + "name": "winter_deimos_damage_athena_ai_ar_pistol", + "count": 10000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Dam_ShotgunSMG_AI", + "templateId": "Quest:Quest_FNWD_Dam_ShotgunSMG_AI", + "objectives": [ + { + "name": "winter_deimos_damage_athena_ai_shotgun_smg", + "count": 10000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Destroy_IceFragments_DifferentMatches", + "templateId": "Quest:Quest_FNWD_Destroy_IceFragments_DifferentMatches", + "objectives": [ + { + "name": "winter_deimos_destroy_monsterspawner", + "count": 10 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI", + "templateId": "Quest:Quest_FNWD_Elim_AI", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai", + "count": 300 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI_Brute", + "templateId": "Quest:Quest_FNWD_Elim_AI_Brute", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai_brute", + "count": 100 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI_Elite", + "templateId": "Quest:Quest_FNWD_Elim_AI_Elite", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai_elite", + "count": 100 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI_Fiend", + "templateId": "Quest:Quest_FNWD_Elim_AI_Fiend", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai_fiend", + "count": 250 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI_Golden", + "templateId": "Quest:Quest_FNWD_Elim_AI_Golden", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai_golden", + "count": 20 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_FNWD_Elim_AI_Throwers", + "templateId": "Quest:Quest_FNWD_Elim_AI_Throwers", + "objectives": [ + { + "name": "winter_deimos_killingblow_athena_ai_throwers", + "count": 150 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_WinterDeimos" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Collect_Item_All_Rarity", + "templateId": "Quest:Quest_BR_Collect_Item_All_Rarity", + "objectives": [ + { + "name": "battlepass_collect_all_rarity_common", + "count": 1 + }, + { + "name": "battlepass_collect_all_rarity_uncommon", + "count": 1 + }, + { + "name": "battlepass_collect_all_rarity_rare", + "count": 1 + }, + { + "name": "battlepass_collect_all_rarity_very_rare", + "count": 1 + }, + { + "name": "battlepass_collect_all_super_rare", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_A", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_A", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_B", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_B", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_C", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_C", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "objectives": [ + { + "name": "battlepass_dance_athena_location_forbidden_01", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_02", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_03", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_04", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_05", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_06", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_07", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_08", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_09", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_10", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_11", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_12", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_13", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_14", + "count": 1 + }, + { + "name": "battlepass_dance_athena_location_forbidden_15", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_Location_Different", + "templateId": "Quest:Quest_BR_Eliminate_Location_Different", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pleasantpartk", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_riskyreels", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_frostyflights", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_A", + "templateId": "Quest:Quest_BR_Interact_Chain_Chests_Search_A", + "objectives": [ + { + "name": "battlepass_chain_chests_search_a", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_B", + "templateId": "Quest:Quest_BR_Interact_Chain_Chests_Search_B", + "objectives": [ + { + "name": "battlepass_chain_chests_search_b", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chain_Chests_Search_C", + "templateId": "Quest:Quest_BR_Interact_Chain_Chests_Search_C", + "objectives": [ + { + "name": "battlepass_chain_chests_search_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Play_Min1Elimination", + "templateId": "Quest:Quest_BR_Play_Min1Elimination", + "objectives": [ + { + "name": "battlepass_complete_athena_with_killingblow", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_001" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Weapons_Different", + "templateId": "Quest:Quest_BR_Damage_Weapons_Different", + "objectives": [ + { + "name": "battlepass_damage_athena_weapons_different_pistol", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_assault", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_shotgun", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_sniper", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_explosives", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_smg", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_minigun", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_ScavengerHunt_DanceOff_Abandoned_Mansion", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_DanceOff_Abandoned_Mansion", + "objectives": [ + { + "name": "battlepass_danceoff_athena_scavengerhunt_abandoned_mansion", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_MinDistance", + "templateId": "Quest:Quest_BR_Eliminate_MinDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_mindistance", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_TwoLocations_01", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_01", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_snobbyshores", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_riskyreels", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_PianoChain_Play_Piano1", + "templateId": "Quest:Quest_BR_PianoChain_Play_Piano1", + "objectives": [ + { + "name": "battlepass_piano_chain_play_piano_1", + "count": 1 + }, + { + "name": "battlepass_piano_chain_play_piano_2", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_snobbyshores_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_lonelylodge_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydivot_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_frostyflights_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tomatotemple_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_002" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_WeaponDamage_01_A", + "templateId": "Quest:Quest_BR_Chain_WeaponDamage_01_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_shotguns_chain_01", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_WeaponDamage_01_B", + "templateId": "Quest:Quest_BR_Chain_WeaponDamage_01_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_pistols_chain_01", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_WeaponDamage_01_C", + "templateId": "Quest:Quest_BR_Chain_WeaponDamage_01_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_snipers_chain_01", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "templateId": "Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_goldrarity", + "count": 2 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_PolarTomato", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_PolarTomato", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_polartomato", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_01_A", + "templateId": "Quest:Quest_BR_Land_Chain_01_A", + "objectives": [ + { + "name": "battlepass_land_athena_chain_lonely_01_a_", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_01_B", + "templateId": "Quest:Quest_BR_Land_Chain_01_B", + "objectives": [ + { + "name": "battlepass_land_athena_chain_pleasant_01_B", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_01_C", + "templateId": "Quest:Quest_BR_Land_Chain_01_C", + "objectives": [ + { + "name": "battlepass_land_athena_chain_lucky_01_C", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_01_D", + "templateId": "Quest:Quest_BR_Land_Chain_01_D", + "objectives": [ + { + "name": "battlepass_land_athena_chain_lonely_01_D", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_01_E", + "templateId": "Quest:Quest_BR_Land_Chain_01_E", + "objectives": [ + { + "name": "battlepass_land_athena_chain_tilted_01_E", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_RingDoorbell_DifferentHouses", + "templateId": "Quest:Quest_BR_RingDoorbell_DifferentHouses", + "objectives": [ + { + "name": "battlepass_ringdoorbell_differenthouses_poi_1", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_3", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_4", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_5", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_6", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_7", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_8", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_10", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_12", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_13", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_14", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_15", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_16", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_17", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_18", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_19", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_20", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_21", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_22", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_23", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_24", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_25", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_26", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_27", + "count": 1 + }, + { + "name": "battlepass_ringdoorbell_differenthouses_poi_28", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_Zipline_DifferentMatches", + "templateId": "Quest:Quest_BR_Use_Zipline_DifferentMatches", + "objectives": [ + { + "name": "battlepass_use_item_zipline", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_003" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_Chairs", + "templateId": "Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_Chairs", + "objectives": [ + { + "name": "athena_battlepass_destroy_chairspolespalettes_chairs", + "count": 80 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_TelephonePoles", + "templateId": "Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_TelephonePoles", + "objectives": [ + { + "name": "athena_battlepass_destroy_chairspolespalettes_telephonepoles", + "count": 25 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_WoodPalettes", + "templateId": "Quest:Quest_BR_Chain_Destroy_ChairsPolesPalettes_WoodPalettes", + "objectives": [ + { + "name": "athena_battlepass_destroy_chairspolespalettes_woodenpalettes", + "count": 25 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Interact_NOMS_01", + "templateId": "Quest:Quest_BR_Chain_Interact_NOMS_01", + "objectives": [ + { + "name": "athena_battlepass_interact_noms_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Interact_NOMS_02", + "templateId": "Quest:Quest_BR_Chain_Interact_NOMS_02", + "objectives": [ + { + "name": "athena_battlepass_interact_noms_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Interact_NOMS_03", + "templateId": "Quest:Quest_BR_Chain_Interact_NOMS_03", + "objectives": [ + { + "name": "athena_battlepass_interact_noms_03", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Interact_NOMS_04", + "templateId": "Quest:Quest_BR_Chain_Interact_NOMS_04", + "objectives": [ + { + "name": "athena_battlepass_interact_noms_04", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Chain_Visit_NOMS_05", + "templateId": "Quest:Quest_BR_Chain_Visit_NOMS_05", + "objectives": [ + { + "name": "athena_battlepass_visit_noms_05", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 100 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_Location_ExpeditionOutposts", + "templateId": "Quest:Quest_BR_Eliminate_Location_ExpeditionOutposts", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_expeditionoutposts", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_TwoLocations_03", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_03", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_happy_or_pleasant", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Fireworks", + "templateId": "Quest:Quest_BR_Interact_Fireworks", + "objectives": [ + { + "name": "battlepass_interact_athena_fireworks_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_15", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_Biplane", + "templateId": "Quest:Quest_BR_Use_Biplane", + "objectives": [ + { + "name": "battlepass_athena_use_biplane", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_004" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Enemy_Buildings", + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_buildings", + "count": 5000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_A", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_A", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_02_a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_B", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_B", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_02_b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_C", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_C", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_02_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_MaxDistance", + "templateId": "Quest:Quest_BR_Eliminate_MaxDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_maxdistance", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_suppressed_weapon", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseWailing", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseWailing", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_wailing_or_paradise", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_02A", + "templateId": "Quest:Quest_BR_Land_Chain_02A", + "objectives": [ + { + "name": "battlepass_land_athena_location_lonely_polarpeak_02a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_02B", + "templateId": "Quest:Quest_BR_Land_Chain_02B", + "objectives": [ + { + "name": "battlepass_land_athena_location_fatalfields_02b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_02C", + "templateId": "Quest:Quest_BR_Land_Chain_02C", + "objectives": [ + { + "name": "battlepass_land_athena_location_tomatotemple_02c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_02D", + "templateId": "Quest:Quest_BR_Land_Chain_02D", + "objectives": [ + { + "name": "battlepass_land_athena_location_leakylake_02d", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_02E", + "templateId": "Quest:Quest_BR_Land_Chain_02E", + "objectives": [ + { + "name": "battlepass_land_athena_location_snobbyshores_chain_02e", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_005" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_02_A", + "templateId": "Quest:Quest_BR_Damage_Chain_02_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_02_smg", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_02_B", + "templateId": "Quest:Quest_BR_Damage_Chain_02_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_02_ar", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_02_C", + "templateId": "Quest:Quest_BR_Damage_Chain_02_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_pistol_thrownweapons", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Weapons_Different_AllTypes", + "templateId": "Quest:Quest_BR_Damage_Weapons_Different_AllTypes", + "objectives": [ + { + "name": "damage_athena_weapons_different_assault_standard", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_minigun", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_assault_burst", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_assault_scoped", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_grenade_launcher", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_rocket_launcher", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_quad_launcher", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_pistol_handcannon", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_pistol_standard", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_pistol_suppressed", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_shotgun_tactical", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_shotgun_heavy", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_shotgun_pump", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_sniper_bolt", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_sniper_hunting", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_assault_thermal", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_smg_pdw", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_sniper_heavy", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_assault_silenced", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_pistol_sixshooter", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_assault_heavy", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_sword", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_sniper_silenced", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_grenade_standard", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_grenade_gas", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_grenade_tnt", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_trap_spike", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_turret", + "count": 1 + }, + { + "name": "damage_athena_weapons_different_crossbow", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_TwoLocations_02", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_02", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_lucky_tilted", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_ammo_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_polarpeaks", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_tomatotown", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_GniceGnomes", + "templateId": "Quest:Quest_BR_Interact_GniceGnomes", + "objectives": [ + { + "name": "battlepass_interact_athena_gnice_gnome_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_gnice_gnome_14", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Throw_PuckToy_MinDistance", + "templateId": "Quest:Quest_BR_Throw_PuckToy_MinDistance", + "objectives": [ + { + "name": "battlepass_athena_slidepuck_mindistance", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_polarpeak_chain_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers_chain_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_luckylanding_chain_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow_chain_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_lazylinks_chain_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts_chain_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_006" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_03_A", + "templateId": "Quest:Quest_BR_Damage_Chain_03_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_03_a", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_03_B", + "templateId": "Quest:Quest_BR_Damage_Chain_03_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_03_b", + "count": 300 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Chain_03_C", + "templateId": "Quest:Quest_BR_Damage_Chain_03_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_03_c", + "count": 400 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Destroy_Biplanes", + "templateId": "Quest:Quest_BR_Destroy_Biplanes", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_biplanes", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_Weapon_Pistol", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_LeakyFrosty", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_LeakyFrosty", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_leaky_frosty", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_03A", + "templateId": "Quest:Quest_BR_Land_Chain_03A", + "objectives": [ + { + "name": "battlepass_land_athena_location_salty_03a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_03B", + "templateId": "Quest:Quest_BR_Land_Chain_03B", + "objectives": [ + { + "name": "battlepass_land_athena_location_happyhamlet_chain_03b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_03C", + "templateId": "Quest:Quest_BR_Land_Chain_03C", + "objectives": [ + { + "name": "battlepass_land_athena_location_wailing_chain_03c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_03D", + "templateId": "Quest:Quest_BR_Land_Chain_03D", + "objectives": [ + { + "name": "battlepass_land_athena_location_junkjunction_chain_03d", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_03E", + "templateId": "Quest:Quest_BR_Land_Chain_03E", + "objectives": [ + { + "name": "battlepass_land_athena_location_paradise_chain_03e", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_RiftPortals", + "templateId": "Quest:Quest_BR_Use_RiftPortals", + "objectives": [ + { + "name": "battlepass_touch_athena_riftportal", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_ExplorerOutposts", + "templateId": "Quest:Quest_BR_Visit_ExplorerOutposts", + "objectives": [ + { + "name": "battlepass_visit_athena_expeditionoutpost_a", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_b", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_d", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_e", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_f", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_g", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_007" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Build_Structures", + "templateId": "Quest:Quest_BR_Build_Structures", + "objectives": [ + { + "name": "battlepass_build_athena_structures_any", + "count": 250 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Passenger_Vehicle", + "templateId": "Quest:Quest_BR_Damage_Passenger_Vehicle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_passenger_vehicle", + "count": 100 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_explosives", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_ShiftyLonely", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_ShiftyLonely", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_shiftylonely", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "objectives": [ + { + "name": "battlepass_interact_athena_hidden_star_03", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_Campfire_Or_Launchpad", + "templateId": "Quest:Quest_BR_Use_Campfire_Or_Launchpad", + "objectives": [ + { + "name": "battlepass_place_athena_campfire_or_launchpad", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_paradise_chain_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_salty_chain_04", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_junk_chain_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake_chain_04", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_haunted_chain_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_wailing_chain_04", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_008" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_A", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_A", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_03_a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_B", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_B", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_03_b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_C", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_C", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_03_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Destroy_GoldBalloons", + "templateId": "Quest:Quest_BR_Destroy_GoldBalloons", + "objectives": [ + { + "name": "battlepass_destroy_goldballoon_01", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_02", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_03", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_04", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_05", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_06", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_07", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_08", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_09", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_10", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_11", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_12", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_13", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_14", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_15", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_16", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_17", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_18", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_19", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_20", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_21", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_22", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_23", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_24", + "count": 1 + }, + { + "name": "battlepass_destroy_goldballoon_25", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_TwoLocations_04", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_04", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_junk_or_retail", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_shotgun", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_04A", + "templateId": "Quest:Quest_BR_Land_Chain_04A", + "objectives": [ + { + "name": "battlepass_land_athena_location_retail_04a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_04B", + "templateId": "Quest:Quest_BR_Land_Chain_04B", + "objectives": [ + { + "name": "battlepass_land_athena_location_frostyflights_04b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_04C", + "templateId": "Quest:Quest_BR_Land_Chain_04C", + "objectives": [ + { + "name": "battlepass_land_athena_location_hauntedhills_04c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_04D", + "templateId": "Quest:Quest_BR_Land_Chain_04D", + "objectives": [ + { + "name": "battlepass_land_athena_location_shiftyshafts_04d", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Land_Chain_04E", + "templateId": "Quest:Quest_BR_Land_Chain_04E", + "objectives": [ + { + "name": "battlepass_land_athena_location_dustydivot_04e", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Timed_Trials_Stormwing", + "templateId": "Quest:Quest_BR_Timed_Trials_Stormwing", + "objectives": [ + { + "name": "complete_timed_trial_stormwing_01", + "count": 1 + }, + { + "name": "complete_timed_trial_stormwing_02", + "count": 1 + }, + { + "name": "complete_timed_trial_stormwing_03", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_Snowman", + "templateId": "Quest:Quest_BR_Use_Snowman", + "objectives": [ + { + "name": "athena_battlepass_use_item_snowman", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_009" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_ScopedWeapon", + "templateId": "Quest:Quest_BR_Damage_ScopedWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_scoped_weapon", + "count": 200 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_assault", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Hit_Enemies_Boogie_ChillerGrenade", + "templateId": "Quest:Quest_BR_Hit_Enemies_Boogie_ChillerGrenade", + "objectives": [ + { + "name": "battlepass_athena_hit_opponent_chiller_or_boogie", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Interact_Chests_TwoLocations_LazyDusty", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_LazyDusty", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_lazydusty", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_A", + "templateId": "Quest:Quest_BR_Shoot_SpecificTargets_Chain_A", + "objectives": [ + { + "name": "battlepass_shoot_specifictargets_chain_a", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_B", + "templateId": "Quest:Quest_BR_Shoot_SpecificTargets_Chain_B", + "objectives": [ + { + "name": "battlepass_shoot_specifictargets_chain_b", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Shoot_SpecificTargets_Chain_C", + "templateId": "Quest:Quest_BR_Shoot_SpecificTargets_Chain_C", + "objectives": [ + { + "name": "battlepass_shoot_specifictargets_chain_c", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Use_Turret_Or_DamageTrap", + "templateId": "Quest:Quest_BR_Use_Turret_Or_DamageTrap", + "objectives": [ + { + "name": "battlepass_place_athena_turret_or_damagetrap", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_ExplorerOutposts_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_ExplorerOutposts_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_a", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_b", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_d", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_e", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_f", + "count": 1 + }, + { + "name": "battlepass_visit_athena_expeditionoutpost_singlematch_g", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Week_010" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_01", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_01", + "objectives": [ + { + "name": "athena_iceking_outlive_01", + "count": 500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_02", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_02", + "objectives": [ + { + "name": "athena_iceking_outlive_02", + "count": 1000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_03", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_03", + "objectives": [ + { + "name": "athena_iceking_outlive_03", + "count": 2500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_04", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_04", + "objectives": [ + { + "name": "athena_iceking_outlive_04", + "count": 7500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_05", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_05", + "objectives": [ + { + "name": "athena_iceking_outlive_05", + "count": 15000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_IceKing_Outlive_06", + "templateId": "Quest:Quest_BR_S7_IceKing_Outlive_06", + "objectives": [ + { + "name": "athena_iceking_outlive_06", + "count": 25000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_IceKing" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Assault_Or_Pistol", + "templateId": "Quest:Quest_BR_Damage_Assault_Or_Pistol", + "objectives": [ + { + "name": "battlepass_damage_athena_player_assault_or_pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Damage_Shotgun_Or_SMG", + "templateId": "Quest:Quest_BR_Damage_Shotgun_Or_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_shotgun_or_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_CompleteChallenges", + "templateId": "Quest:Quest_BR_OT_CompleteChallenges", + "objectives": [ + { + "name": "overtime_quest_completequests_tokens", + "count": 13 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Outlast_75_SingleMatch", + "templateId": "Quest:Quest_BR_OT_Outlast_75_SingleMatch", + "objectives": [ + { + "name": "outlive_athena_OT_1", + "count": 75 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Play_DriftboardLTM_WithFriend", + "templateId": "Quest:Quest_BR_OT_Play_DriftboardLTM_WithFriend", + "objectives": [ + { + "name": "overtime_battlepass_play_driftboardLTM_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Play_Featured_Creative", + "templateId": "Quest:Quest_BR_OT_Play_Featured_Creative", + "objectives": [ + { + "name": "overtime_battlepass_play_featured_creative_content", + "count": 15 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_RegainHealth_Campfire_DifferentMatches", + "templateId": "Quest:Quest_BR_OT_RegainHealth_Campfire_DifferentMatches", + "objectives": [ + { + "name": "overtime_battlepass_heal_from_campfires_different_matches_1", + "count": 1 + }, + { + "name": "overtime_battlepass_heal_from_campfires_different_matches_2", + "count": 1 + }, + { + "name": "overtime_battlepass_heal_from_campfires_different_matches_3", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Search_Chests_Ammo_Racetrack_Danceclub", + "templateId": "Quest:Quest_BR_OT_Search_Chests_Ammo_Racetrack_Danceclub", + "objectives": [ + { + "name": "overtime_battlepass_search_chests_ammoboxes_racetrack_danceclub", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Search_Chests_Ammo_TheBlock", + "templateId": "Quest:Quest_BR_OT_Search_Chests_Ammo_TheBlock", + "objectives": [ + { + "name": "overtime_battlepass_search_chests_ammoboxes_TheBlock", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Search_Motel_RVPark", + "templateId": "Quest:Quest_BR_OT_Search_Motel_RVPark", + "objectives": [ + { + "name": "overtime_battlepass_search_chests_ammobox_motel_RVPark", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Search_SupplyDrop_DifferentMatches", + "templateId": "Quest:Quest_BR_OT_Search_SupplyDrop_DifferentMatches", + "objectives": [ + { + "name": "overtime_battlepass_search_supplydrop_differentmatches", + "count": 2 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Thank_Bus_Driver_DifferentMatches", + "templateId": "Quest:Quest_BR_OT_Thank_Bus_Driver_DifferentMatches", + "objectives": [ + { + "name": "FDF_thank_athena_bus_driver_differentmatches", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Top10_Squads_WithFriend", + "templateId": "Quest:Quest_BR_OT_Top10_Squads_WithFriend", + "objectives": [ + { + "name": "overtime_battlepass_top10_squad_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Top15_Duos_WithFriend", + "templateId": "Quest:Quest_BR_OT_Top15_Duos_WithFriend", + "objectives": [ + { + "name": "overtime_battlepass_top15_duos_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_OT_Visit_Waterfalls", + "templateId": "Quest:Quest_BR_OT_Visit_Waterfalls", + "objectives": [ + { + "name": "overtime_battlepass_visit_different_waterfalls_01", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_02", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_03", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_04", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_05", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_06", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_07", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_08", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_09", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_10", + "count": 1 + }, + { + "name": "overtime_battlepass_visit_different_waterfalls_11", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Revive_DifferentMatches", + "templateId": "Quest:Quest_BR_Revive_DifferentMatches", + "objectives": [ + { + "name": "battlepass_athena_revive_player_differentmatches", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_01", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_01", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_01", + "count": 47 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_02", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_02", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_02", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_03", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_03", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_03", + "count": 71 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_04", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_04", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_04", + "count": 10 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_05", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_05", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_05", + "count": 87 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_06", + "templateId": "Quest:Quest_BR_S7_Overtime_CompleteQuests_ChainTest_06", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_06", + "count": 15 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_Visit_NamedLocations", + "templateId": "Quest:Quest_BR_Visit_NamedLocations", + "objectives": [ + { + "name": "battlepass_visit_athena_location_flushfactory", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_greasygrove", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lazylinks", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_riskyreels", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydivot", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_luckylanding", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_polarpeak", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_frostyflights", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Overtime" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_001", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_001", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest1", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest1", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_01", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_002", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_002", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token2", + "count": 2 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest2", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest2", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_02", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_003", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_003", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token3", + "count": 3 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest3", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest3", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_03", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_004", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_004", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token4", + "count": 4 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest4", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest4", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_04", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_005", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_005", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token5", + "count": 5 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest5", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest5", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_05", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_006", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_006", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token6", + "count": 6 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest6", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest6", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_06", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_007", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_007", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token7", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest7", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest7", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_07", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_008", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_008", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token8", + "count": 8 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest8", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest8", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_08", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_009", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_009", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token9", + "count": 9 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest9", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest9", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_09", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_CollectTokens_010", + "templateId": "Quest:Quest_BR_S7_Cumulative_CollectTokens_010", + "objectives": [ + { + "name": "battlepass_season7_cumulative_token10", + "count": 10 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Quest10", + "templateId": "Quest:Quest_BR_S7_Cumulative_Quest10", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_10", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Final", + "templateId": "Quest:Quest_BR_S7_Cumulative_Final", + "objectives": [ + { + "name": "battlepass_completed_cumulative_final_quest1", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest2", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest3", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest4", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest5", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest6", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest7", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest8", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest9", + "count": 1 + }, + { + "name": "battlepass_completed_cumulative_final_quest10", + "count": 1 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_Cumulative_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S7_Cumulative_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_S7cumulative_complete_weeklychallenges_01", + "count": 60 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_Cumulative" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_arcticsniper_complete_weeklychallenges_01", + "count": 10 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_arcticsniper_complete_weeklychallenges_02", + "count": 25 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_arcticsniper_complete_weeklychallenges_03", + "count": 50 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 20000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 50000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 100000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 150000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_05", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 200000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_06", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_06", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 250000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_07", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_07", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 300000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_08", + "templateId": "Quest:Quest_BR_S7_ArcticSniper_Gain_SeasonXP_08", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 350000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_ArcticSniper" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_neoncat_complete_weeklychallenges_01", + "count": 15 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_neoncat_complete_weeklychallenges_02", + "count": 35 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_neoncat_complete_weeklychallenges_03", + "count": 55 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 10000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 30000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 75000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 125000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_05", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 175000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_06", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_06", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 225000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_07", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_07", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 275000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_08", + "templateId": "Quest:Quest_BR_S7_NeonCat_Gain_SeasonXP_08", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 325000 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_NeonCat" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_01", + "templateId": "Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_01", + "objectives": [ + { + "name": "athena_sgtwinter_complete_daily_challenges_01", + "count": 7 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_SgtWinter" + }, + { + "itemGuid": "S7-Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_02", + "templateId": "Quest:Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_02", + "objectives": [ + { + "name": "athena_sgtwinter_complete_daily_challenges_02", + "count": 14 + } + ], + "challenge_bundle_id": "S7-ChallengeBundle:QuestBundle_S7_SgtWinter" + } ] }, - { - "templateId": "Quest:Daily_DestroySeesaws", - "objectives": [ - "quest_reactive_destroyseesaw_v3" + "Season8": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S8-ChallengeBundleSchedule:Schedule_LTM_Ashton", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Ashton", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Schedule_LTM_Goose", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Goose", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_LTM_Goose" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Schedule_LTM_Heist_V2", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Heist_V2", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Schedule_PirateParty", + "templateId": "ChallengeBundleSchedule:Schedule_PirateParty", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_PirateParty" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_Cumulative_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_Cumulative_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_ExtraCredit_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_ExtraCredit_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_Free_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_Free_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_Week_001", + "S8-ChallengeBundle:QuestBundle_S8_Week_002", + "S8-ChallengeBundle:QuestBundle_S8_Week_003", + "S8-ChallengeBundle:QuestBundle_S8_Week_004", + "S8-ChallengeBundle:QuestBundle_S8_Week_005", + "S8-ChallengeBundle:QuestBundle_S8_Week_006", + "S8-ChallengeBundle:QuestBundle_S8_Week_007", + "S8-ChallengeBundle:QuestBundle_S8_Week_008", + "S8-ChallengeBundle:QuestBundle_S8_Week_009", + "S8-ChallengeBundle:QuestBundle_S8_Week_010" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_Paid_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_Paid_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_Pirate", + "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_Ruin_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_Ruin_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + ] + }, + { + "itemGuid": "S8-ChallengeBundleSchedule:Season8_Shiny_Schedule", + "templateId": "ChallengeBundleSchedule:Season8_Shiny_Schedule", + "granted_bundles": [ + "S8-ChallengeBundle:QuestBundle_S8_Shiny" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_LTM_Ashton", + "templateId": "ChallengeBundle:QuestBundle_LTM_Ashton", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Ashton_Damage_Indigo", + "S8-Quest:Quest_BR_Ashton_Collect_Stones", + "S8-Quest:Quest_BR_Ashton_Play_Matches", + "S8-Quest:Quest_BR_Ashton_Damage_Turbo", + "S8-Quest:Quest_BR_Ashton_Damage_Milo_Jetpack", + "S8-Quest:Quest_BR_Ashton_Elims_DifferentMatches", + "S8-Quest:Quest_BR_Ashton_Damage_Chicago", + "S8-Quest:Quest_BR_Ashton_Damage_Milo_A", + "S8-Quest:Quest_BR_Ashton_Win_SideB", + "S8-Quest:Quest_BR_Ashton_Damage_Hippo", + "S8-Quest:Quest_BR_Ashton_Damage_Milo_B", + "S8-Quest:Quest_BR_Ashton_Win_SideA" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Schedule_LTM_Ashton" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_LTM_Goose", + "templateId": "ChallengeBundle:QuestBundle_LTM_Goose", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Goose_DealDamage_SMGorMinigun", + "S8-Quest:Quest_BR_Goose_Collect_Floating_Upgrades", + "S8-Quest:Quest_BR_Goose_Play_Matches", + "S8-Quest:Quest_BR_Goose_DealDamage_Pistol", + "S8-Quest:Quest_BR_Goose_Destroy_Stormwings", + "S8-Quest:Quest_BR_Goose_Outlast", + "S8-Quest:Quest_BR_Goose_DealDamage_AR", + "S8-Quest:Quest_BR_Goose_Damage_Stormwings", + "S8-Quest:Quest_BR_Goose_Place_Top5" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Schedule_LTM_Goose" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2", + "templateId": "ChallengeBundle:QuestBundle_LTM_Heist_V2", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Heist_CompleteQuests", + "S8-Quest:Quest_BR_Heist_win", + "S8-Quest:Quest_BR_Heist_win_matches_A", + "S8-Quest:Quest_BR_Heist_win_matches_B", + "S8-Quest:Quest_BR_Heist_Use_Grappler", + "S8-Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "S8-Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Schedule_LTM_Heist_V2" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_PirateParty", + "templateId": "ChallengeBundle:QuestBundle_PirateParty", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_PP_Visit_PirateCamps", + "S8-Quest:Quest_BR_PP_BuriedTreasure", + "S8-Quest:Quest_BR_PP_Top10_Squads_WithFriend", + "S8-Quest:Quest_BR_PP_Use_Cannon" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Schedule_PirateParty" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S8_Cumulative", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_S8_Cumulative_Complete_WeeklyChallenges_01", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_001", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_002", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_003", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_004", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_005", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_006", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_007", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_008", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_009", + "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_010" + ], + "questStages": [ + "S8-Quest:Quest_BR_S8_Cumulative_Quest01", + "S8-Quest:Quest_BR_S8_Cumulative_Quest02", + "S8-Quest:Quest_BR_S8_Cumulative_Quest03", + "S8-Quest:Quest_BR_S8_Cumulative_Quest04", + "S8-Quest:Quest_BR_S8_Cumulative_Quest05", + "S8-Quest:Quest_BR_S8_Cumulative_Quest06", + "S8-Quest:Quest_BR_S8_Cumulative_Quest07", + "S8-Quest:Quest_BR_S8_Cumulative_Quest08", + "S8-Quest:Quest_BR_S8_Cumulative_Quest09", + "S8-Quest:Quest_BR_S8_Cumulative_Quest10" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Cumulative_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit", + "templateId": "ChallengeBundle:QuestBundle_S8_ExtraCredit", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01a", + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02a", + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03a", + "S8-Quest:Quest_BR_ExtraCredit_Creative_CollectCoins", + "S8-Quest:Quest_BR_ExtraCredit_Top10_Squads_WithFriend", + "S8-Quest:Quest_BR_ExtraCredit_Damage", + "S8-Quest:Quest_BR_ExtraCredit_Top15_Duos_WithFriend", + "S8-Quest:Quest_BR_ExtraCredit_Outlast", + "S8-Quest:Quest_BR_ExtraCredit_Place_Top25_Solo" + ], + "questStages": [ + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01b", + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02b", + "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03b" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_ExtraCredit_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_001", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Visit_PirateCamps", + "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "S8-Quest:Quest_BR_Damage_Chain_Dual_A", + "S8-Quest:Quest_BR_Visit_GiantFaces", + "S8-Quest:Quest_BR_Use_Geyser_DifferentMatches", + "S8-Quest:Quest_BR_Eliminate_ExploShotGunAR", + "S8-Quest:Quest_BR_Damage_Vehicle_Opponent" + ], + "questStages": [ + "S8-Quest:Quest_BR_Damage_Chain_Dual_B", + "S8-Quest:Quest_BR_Damage_Chain_Dual_C" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_002", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Land_Chain_01_A", + "S8-Quest:Quest_BR_Damage_Falling_SupplyDrops", + "S8-Quest:Quest_BR_Eliminate_Location_Salty_Or_Haunted", + "S8-Quest:Quest_BR_Interact_HealingItems_QuestChain_02_A", + "S8-Quest:Quest_BR_Visit_Farthest_Points", + "S8-Quest:Quest_BR_Damage_Player_With_Cannon", + "S8-Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch" + ], + "questStages": [ + "S8-Quest:Quest_BR_Interact_HealingItems_Chain_02_B", + "S8-Quest:Quest_BR_Interact_HealingItems_QuestChain_02_C", + "S8-Quest:Quest_BR_Land_Chain_01_B", + "S8-Quest:Quest_BR_Land_Chain_01_C", + "S8-Quest:Quest_BR_Land_Chain_01_D", + "S8-Quest:Quest_BR_Land_Chain_01_E" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_003", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "S8-Quest:Quest_BR_3BiomeContext_Stage1_Destroy_Cacti_Desert", + "S8-Quest:Quest_BR_Use_Trap_SingleMatch", + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "S8-Quest:Quest_BR_Damage_Headshot", + "S8-Quest:Quest_BR_Eliminate_3Weapons_01" + ], + "questStages": [ + "S8-Quest:Quest_BR_3BiomeContext_Stage2_Interact_Ammoboxes_Snow", + "S8-Quest:Quest_BR_3BiomeContext_Stage3_Interact_Chests_Jungle", + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_004", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Land_Chain_02A", + "S8-Quest:Quest_BR_Use_Hamsterball", + "S8-Quest:Quest_BR_Eliminate_ScopedWeapon_and_SilencedWeapon", + "S8-Quest:Quest_BR_Destroy_Structure_AsCannonBall", + "S8-Quest:Quest_BR_BuriedTreasure", + "S8-Quest:Quest_BR_Eliminate_TwoLocations_03", + "S8-Quest:Quest_BR_Outlive_90_Opponents" + ], + "questStages": [ + "S8-Quest:Quest_BR_Land_Chain_02B", + "S8-Quest:Quest_BR_Land_Chain_02C", + "S8-Quest:Quest_BR_Land_Chain_02D", + "S8-Quest:Quest_BR_Land_Chain_02E", + "S8-Quest:Quest_BR_Outlive_Opponents_Chain_2", + "S8-Quest:Quest_BR_Outlive_Opponents_Chain_3" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_005", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Damage_ScopedWeapon", + "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseShifty", + "S8-Quest:Quest_BR_RaceTrack_HamsterBall", + "S8-Quest:Quest_BR_Throw_BouncyBallToy_MinBounces", + "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_A", + "S8-Quest:Quest_BR_Geyser_Zipline_Vehicle_SingleMatch", + "S8-Quest:Quest_BR_Eliminate_Location_PirateCamps" + ], + "questStages": [ + "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_B", + "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_C" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_006", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Visit_Animal", + "S8-Quest:Quest_BR_Visit_Highest_Elevations", + "S8-Quest:Quest_BR_Eliminate_TwoLocations_05", + "S8-Quest:Quest_BR_Land_Chain_03A", + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "S8-Quest:Quest_BR_Eliminate_Flintlock_Or_CompoundBow", + "S8-Quest:Quest_BR_Use_Different_Throwable_Items_SingleMatch" + ], + "questStages": [ + "S8-Quest:Quest_BR_Land_Chain_03B", + "S8-Quest:Quest_BR_Land_Chain_03C", + "S8-Quest:Quest_BR_Land_Chain_03D", + "S8-Quest:Quest_BR_Land_Chain_03E" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_007", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Damage_Pickaxe", + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "S8-Quest:Quest_BR_Visit_PirateCamps_SingleMatch", + "S8-Quest:Quest_BR_Damage_From_Above", + "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "S8-Quest:Quest_BR_Damage_Chain_Zipline_A", + "S8-Quest:Quest_BR_Eliminate_Location_Different" + ], + "questStages": [ + "S8-Quest:Quest_BR_Damage_Chain_Zipline_B", + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_008", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_01a", + "S8-Quest:Quest_BR_Use_VendingMachine", + "S8-Quest:Quest_BR_Damage_While_Using_Balloon", + "S8-Quest:Quest_BR_Interact_JigsawPuzzle", + "S8-Quest:Quest_BR_PhoneChain_Durrr", + "S8-Quest:Quest_BR_Eliminate_TwoLocations_04", + "S8-Quest:Quest_BR_Eliminate_50m" + ], + "questStages": [ + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "S8-Quest:Quest_BR_PhoneChain_Pizza" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_009", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Land_Chain_04A", + "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "S8-Quest:Quest_BR_Use_Geyser_MultipleBeforeLanding", + "S8-Quest:Quest_BR_Dance_Chain_04_A", + "S8-Quest:Quest_BR_Damage_Below", + "S8-Quest:Quest_BR_Use_SecondChanceMachine_ReviveTeammate", + "S8-Quest:Quest_BR_Eliminate" + ], + "questStages": [ + "S8-Quest:Quest_BR_Dance_Chain_04_B", + "S8-Quest:Quest_BR_Dance_Chain_04_C", + "S8-Quest:Quest_BR_Land_Chain_04B", + "S8-Quest:Quest_BR_Land_Chain_04C", + "S8-Quest:Quest_BR_Land_Chain_04D", + "S8-Quest:Quest_BR_Land_Chain_04E" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S8_Week_010", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Touch_FlamingRings_Cannon", + "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_01", + "S8-Quest:Quest_BR_Eliminate_TwoLocations_06", + "S8-Quest:Quest_BR_Damage_Infantry_or_Heavy", + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_02a", + "S8-Quest:Quest_BR_Damage_After_VolcanoVent", + "S8-Quest:Quest_BR_Eliminate_MaxDistance" + ], + "questStages": [ + "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_02", + "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_03", + "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Free_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja", + "templateId": "ChallengeBundle:QuestBundle_S8_DragonNinja", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_01", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_02", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_03", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_04", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_05", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_06", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_07", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_08", + "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_09", + "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_01", + "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_02", + "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_03" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Paid_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Pirate", + "templateId": "ChallengeBundle:QuestBundle_S8_Pirate", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_01", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_02", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_03", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_04", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_05", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_06", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_07", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_08", + "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_09", + "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_01", + "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_02", + "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_03" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Paid_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin", + "templateId": "ChallengeBundle:QuestBundle_S8_Cumulative_Ruin", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_Ruin_Destroy_Trees", + "S8-Quest:Quest_BR_Ruin_Destroy_Rocks", + "S8-Quest:Quest_BR_Ruin_Destroy_Cars", + "S8-Quest:Quest_BR_Ruin_Damage_Enemy_Structures", + "S8-Quest:Quest_BR_Ruin_Outlast", + "S8-Quest:Quest_BR_Ruin_Complete_Daily_Challenges" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Ruin_Schedule" + }, + { + "itemGuid": "S8-ChallengeBundle:QuestBundle_S8_Shiny", + "templateId": "ChallengeBundle:QuestBundle_S8_Shiny", + "grantedquestinstanceids": [ + "S8-Quest:Quest_BR_S8_Shiny_Outlive_01", + "S8-Quest:Quest_BR_S8_Shiny_Outlive_02", + "S8-Quest:Quest_BR_S8_Shiny_Outlive_03", + "S8-Quest:Quest_BR_S8_Shiny_Outlive_04", + "S8-Quest:Quest_BR_S8_Shiny_Outlive_05", + "S8-Quest:Quest_BR_S8_Shiny_Outlive_06" + ], + "challenge_bundle_schedule_id": "S8-ChallengeBundleSchedule:Season8_Shiny_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Collect_Stones", + "templateId": "Quest:Quest_BR_Ashton_Collect_Stones", + "objectives": [ + { + "name": "ashton_br_collect_stones", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Chicago", + "templateId": "Quest:Quest_BR_Ashton_Damage_Chicago", + "objectives": [ + { + "name": "ashton_damage_athena_chicago_with_shield", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Hippo", + "templateId": "Quest:Quest_BR_Ashton_Damage_Hippo", + "objectives": [ + { + "name": "ashton_damage_athena_hippo_after_grapple", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Indigo", + "templateId": "Quest:Quest_BR_Ashton_Damage_Indigo", + "objectives": [ + { + "name": "ashton_damage_athena_indigo_while_hovering", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Milo_A", + "templateId": "Quest:Quest_BR_Ashton_Damage_Milo_A", + "objectives": [ + { + "name": "ashton_damage_athena_milo_primary", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Milo_B", + "templateId": "Quest:Quest_BR_Ashton_Damage_Milo_B", + "objectives": [ + { + "name": "ashton_damage_athena_milo_secondary", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Milo_Jetpack", + "templateId": "Quest:Quest_BR_Ashton_Damage_Milo_Jetpack", + "objectives": [ + { + "name": "ashton_damage_athena_milo_jetpacking", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Damage_Turbo", + "templateId": "Quest:Quest_BR_Ashton_Damage_Turbo", + "objectives": [ + { + "name": "ashton_damage_athena_turbo_ground_pound", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Elims_DifferentMatches", + "templateId": "Quest:Quest_BR_Ashton_Elims_DifferentMatches", + "objectives": [ + { + "name": "ashton_br_athena_elims_different_matches", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Play_Matches", + "templateId": "Quest:Quest_BR_Ashton_Play_Matches", + "objectives": [ + { + "name": "ltm_ashton_athena_play_matches", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Win_SideA", + "templateId": "Quest:Quest_BR_Ashton_Win_SideA", + "objectives": [ + { + "name": "ltm_ashton_athena_win_side_a", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ashton_Win_SideB", + "templateId": "Quest:Quest_BR_Ashton_Win_SideB", + "objectives": [ + { + "name": "ltm_ashton_athena_win_side_b", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Ashton" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Collect_Floating_Upgrades", + "templateId": "Quest:Quest_BR_Goose_Collect_Floating_Upgrades", + "objectives": [ + { + "name": "ltm_goose_collect_athena_floating_upgrades_weap_c", + "count": 1 + }, + { + "name": "ltm_goose_collect_athena_floating_upgrades_weap_r", + "count": 1 + }, + { + "name": "ltm_goose_collect_athena_floating_upgrades_weap_sr", + "count": 1 + }, + { + "name": "ltm_goose_collect_athena_floating_upgrades_weap_uc", + "count": 1 + }, + { + "name": "ltm_goose_collect_athena_floating_upgrades_weap_vr", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Damage_Stormwings", + "templateId": "Quest:Quest_BR_Goose_Damage_Stormwings", + "objectives": [ + { + "name": "ltm_goose_damage_athena_stormwings", + "count": 4000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_DealDamage_AR", + "templateId": "Quest:Quest_BR_Goose_DealDamage_AR", + "objectives": [ + { + "name": "ltm_goose_damage_athena_player_assaultrifle", + "count": 5000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_DealDamage_Pistol", + "templateId": "Quest:Quest_BR_Goose_DealDamage_Pistol", + "objectives": [ + { + "name": "ltm_goose_damage_athena_player_pistol", + "count": 2000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_DealDamage_SMGorMinigun", + "templateId": "Quest:Quest_BR_Goose_DealDamage_SMGorMinigun", + "objectives": [ + { + "name": "ltm_goose_damage_athena_player_smgminigun", + "count": 4000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Destroy_Stormwings", + "templateId": "Quest:Quest_BR_Goose_Destroy_Stormwings", + "objectives": [ + { + "name": "ltm_goose_destroy_athena_stormwings", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Outlast", + "templateId": "Quest:Quest_BR_Goose_Outlast", + "objectives": [ + { + "name": "ltm_goose_athena_outlast", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Place_Top5", + "templateId": "Quest:Quest_BR_Goose_Place_Top5", + "objectives": [ + { + "name": "ltm_goose_athena_place_top5", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Goose_Play_Matches", + "templateId": "Quest:Quest_BR_Goose_Play_Matches", + "objectives": [ + { + "name": "ltm_goose_athena_play_matches", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Goose" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_CompleteQuests", + "templateId": "Quest:Quest_BR_Heist_CompleteQuests", + "objectives": [ + { + "name": "ltm_heistbundle_athena_quest_completequests_tokens", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "templateId": "Quest:Quest_BR_Heist_Damage_DiamondCarriers", + "objectives": [ + { + "name": "ltm_heistbundle_damage_athena_player_withdiamond", + "count": 200 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches", + "templateId": "Quest:Quest_BR_Heist_PickupDiamond_DifferentMatches", + "objectives": [ + { + "name": "ltm_heistbundle_athena_pickupdiamond_differentmatches", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_Use_Grappler", + "templateId": "Quest:Quest_BR_Heist_Use_Grappler", + "objectives": [ + { + "name": "ltm_heistbundle_athena_use_grappler_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_win", + "templateId": "Quest:Quest_BR_Heist_win", + "objectives": [ + { + "name": "ltm_heistbundle_athena_win", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_win_matches_A", + "templateId": "Quest:Quest_BR_Heist_win_matches_A", + "objectives": [ + { + "name": "ltm_heistbundle_athena_win_matches_a", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Heist_win_matches_B", + "templateId": "Quest:Quest_BR_Heist_win_matches_B", + "objectives": [ + { + "name": "ltm_heistbundle_athena_win_matches_b", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_LTM_Heist_V2" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PP_BuriedTreasure", + "templateId": "Quest:Quest_BR_PP_BuriedTreasure", + "objectives": [ + { + "name": "battlepass_use_find_buried_treasure", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_PirateParty" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PP_Top10_Squads_WithFriend", + "templateId": "Quest:Quest_BR_PP_Top10_Squads_WithFriend", + "objectives": [ + { + "name": "overtime_battlepass_top10_squad_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_PirateParty" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PP_Use_Cannon", + "templateId": "Quest:Quest_BR_PP_Use_Cannon", + "objectives": [ + { + "name": "be_the_cannon_ball", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_PirateParty" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PP_Visit_PirateCamps", + "templateId": "Quest:Quest_BR_PP_Visit_PirateCamps", + "objectives": [ + { + "name": "battlepass_visit_athena_piratecamp_pirate_party", + "count": 10 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_PirateParty" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_001", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_001", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest01", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest01", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_002", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_002", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token02", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest02", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest02", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_02", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_003", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_003", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token03", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest03", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest03", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_03", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_004", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_004", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token04", + "count": 4 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest04", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest04", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_04", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_005", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_005", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token05", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest05", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest05", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_05", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_006", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_006", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token06", + "count": 6 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest06", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest06", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_06", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_007", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_007", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token07", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest07", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest07", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_07", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_008", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_008", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token08", + "count": 8 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest08", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest08", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_08", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_009", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_009", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token09", + "count": 9 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest09", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest09", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_09", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_CollectTokens_010", + "templateId": "Quest:Quest_BR_S8_Cumulative_CollectTokens_010", + "objectives": [ + { + "name": "battlepass_season8_cumulative_token10", + "count": 10 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Quest10", + "templateId": "Quest:Quest_BR_S8_Cumulative_Quest10", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_10", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Cumulative_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S8_Cumulative_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_S8cumulative_complete_weeklychallenges_01", + "count": 55 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Creative_CollectCoins", + "templateId": "Quest:Quest_BR_ExtraCredit_Creative_CollectCoins", + "objectives": [ + { + "name": "overtime_battlepass_play_featured_creative_content", + "count": 20 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Damage", + "templateId": "Quest:Quest_BR_ExtraCredit_Damage", + "objectives": [ + { + "name": "extracredit_battlepass_damage_athena_player", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Outlast", + "templateId": "Quest:Quest_BR_ExtraCredit_Outlast", + "objectives": [ + { + "name": "extracredit_battlepass_outlast", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Place_Top25_Solo", + "templateId": "Quest:Quest_BR_ExtraCredit_Place_Top25_Solo", + "objectives": [ + { + "name": "extracredit_battlepass_athena_place_solo_top_25", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Top10_Squads_WithFriend", + "templateId": "Quest:Quest_BR_ExtraCredit_Top10_Squads_WithFriend", + "objectives": [ + { + "name": "extracredit_battlepass_top10_squad_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_ExtraCredit_Top15_Duos_WithFriend", + "templateId": "Quest:Quest_BR_ExtraCredit_Top15_Duos_WithFriend", + "objectives": [ + { + "name": "extracredit_battlepass_top15_duos_with_friend", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01a", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01a", + "objectives": [ + { + "name": "quest_s8_extracredit_completequests_test_01", + "count": 23 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01b", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01b", + "objectives": [ + { + "name": "quest_s7_overtime_completequests_test_02", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02a", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02a", + "objectives": [ + { + "name": "quest_s8_extracredit_completequests_test_03", + "count": 71 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02b", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02b", + "objectives": [ + { + "name": "quest_s8_extracredit_completequests_test_04", + "count": 4 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03a", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03a", + "objectives": [ + { + "name": "quest_s8_extracredit_completequests_test_05", + "count": 87 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03b", + "templateId": "Quest:Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03b", + "objectives": [ + { + "name": "quest_s8_extracredit_completequests_test_06", + "count": 6 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_ExtraCredit" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Chain_Dual_A", + "templateId": "Quest:Quest_BR_Damage_Chain_Dual_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_dual_a_1", + "count": 1 + }, + { + "name": "battlepass_damage_athena_player_chain_dual_a_2", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Chain_Dual_B", + "templateId": "Quest:Quest_BR_Damage_Chain_Dual_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_dual_b_1", + "count": 1 + }, + { + "name": "battlepass_damage_athena_player_chain_dual_b_2", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Chain_Dual_C", + "templateId": "Quest:Quest_BR_Damage_Chain_Dual_C", + "objectives": [ + { + "name": "battlepass_damage_athena_player_chain_dual_c_1", + "count": 1 + }, + { + "name": "battlepass_damage_athena_player_chain_dual_c_2", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Vehicle_Opponent", + "templateId": "Quest:Quest_BR_Damage_Vehicle_Opponent", + "objectives": [ + { + "name": "battlepass_damage_athena_vehicle_with_opponent_inside", + "count": 200 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_ExploShotGunAR", + "templateId": "Quest:Quest_BR_Eliminate_ExploShotGunAR", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_3weaps_shotgun", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_3weaps_ar", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_3weaps_explosive", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_01", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_Geyser_DifferentMatches", + "templateId": "Quest:Quest_BR_Use_Geyser_DifferentMatches", + "objectives": [ + { + "name": "battlepass_use_item_geyser", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_GiantFaces", + "templateId": "Quest:Quest_BR_Visit_GiantFaces", + "objectives": [ + { + "name": "battlepass_visit_athena_location_cliff_face_desert", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_cliff_face_jungle", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_cliff_face_snow", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_PirateCamps", + "templateId": "Quest:Quest_BR_Visit_PirateCamps", + "objectives": [ + { + "name": "battlepass_visit_athena_piratecamp_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_07", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_001" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Falling_SupplyDrops", + "templateId": "Quest:Quest_BR_Damage_Falling_SupplyDrops", + "objectives": [ + { + "name": "battlepass_athena_damage_descending_supply_drops", + "count": 200 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Player_With_Cannon", + "templateId": "Quest:Quest_BR_Damage_Player_With_Cannon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_with_cannon", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_Location_Salty_Or_Haunted", + "templateId": "Quest:Quest_BR_Eliminate_Location_Salty_Or_Haunted", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_salty_or_haunted", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_riskyreels", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_lazylagoon", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_sunnysteps", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_HealingItems_QuestChain_02_A", + "templateId": "Quest:Quest_BR_Interact_HealingItems_QuestChain_02_A", + "objectives": [ + { + "name": "athena_battlepass_heal_forageditems_apples_chain1", + "count": 25 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_HealingItems_Chain_02_B", + "templateId": "Quest:Quest_BR_Interact_HealingItems_Chain_02_B", + "objectives": [ + { + "name": "athena_battlepass_heal_player_cozycampfire_chain2", + "count": 50 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_HealingItems_QuestChain_02_C", + "templateId": "Quest:Quest_BR_Interact_HealingItems_QuestChain_02_C", + "objectives": [ + { + "name": "athena_battlepass_heal_player_medkit_chain3", + "count": 75 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_01_A", + "templateId": "Quest:Quest_BR_Land_Chain_01_A", + "objectives": [ + { + "name": "battlepass_land_athena_chain_block_01_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_01_B", + "templateId": "Quest:Quest_BR_Land_Chain_01_B", + "objectives": [ + { + "name": "battlepass_land_athena_chain_dusty_01_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_01_C", + "templateId": "Quest:Quest_BR_Land_Chain_01_C", + "objectives": [ + { + "name": "battlepass_land_athena_chain_polar_01_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_01_D", + "templateId": "Quest:Quest_BR_Land_Chain_01_D", + "objectives": [ + { + "name": "battlepass_land_athena_chain_snobby_01_d", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_01_E", + "templateId": "Quest:Quest_BR_Land_Chain_01_E", + "objectives": [ + { + "name": "battlepass_land_athena_chain_paradise_01_e", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_Farthest_Points", + "templateId": "Quest:Quest_BR_Visit_Farthest_Points", + "objectives": [ + { + "name": "athena_battlepass_visit_far_north", + "count": 1 + }, + { + "name": "athena_battlepass_visit_far_south", + "count": 1 + }, + { + "name": "athena_battlepass_visit_far_east", + "count": 1 + }, + { + "name": "athena_battlepass_visit_far_west", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_002" + }, + { + "itemGuid": "S8-Quest:Quest_BR_3BiomeContext_Stage1_Destroy_Cacti_Desert", + "templateId": "Quest:Quest_BR_3BiomeContext_Stage1_Destroy_Cacti_Desert", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_cacti_desert", + "count": 30 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_3BiomeContext_Stage2_Interact_Ammoboxes_Snow", + "templateId": "Quest:Quest_BR_3BiomeContext_Stage2_Interact_Ammoboxes_Snow", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_interact_ammoboxes_snow", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_3BiomeContext_Stage3_Interact_Chests_Jungle", + "templateId": "Quest:Quest_BR_3BiomeContext_Stage3_Interact_Chests_Jungle", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_treesrockscars_trees", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_3Weapons_01", + "templateId": "Quest:Quest_BR_Eliminate_3Weapons_01", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_3weaps_smg", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_3weaps_pistol", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_3weaps_sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_02", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "objectives": [ + { + "name": "battlepass_interact_athena_hiddenstar_treasuremap_02", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_Trap_SingleMatch", + "templateId": "Quest:Quest_BR_Use_Trap_SingleMatch", + "objectives": [ + { + "name": "battlepass_place_athena_trap_spike_singlematch", + "count": 1 + }, + { + "name": "battlepass_place_athena_trap_mountedturret_singlematch", + "count": 1 + }, + { + "name": "battlepass_place_athena_trap_launchpad_singlematch", + "count": 1 + }, + { + "name": "battlepass_place_athena_trap_campfire_singlematch", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_fatal_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_salty_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_haunted_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tilted_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_frosty_chain_01_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_loot_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_003" + }, + { + "itemGuid": "S8-Quest:Quest_BR_BuriedTreasure", + "templateId": "Quest:Quest_BR_BuriedTreasure", + "objectives": [ + { + "name": "battlepass_use_find_buried_treasure", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Destroy_Structure_AsCannonBall", + "templateId": "Quest:Quest_BR_Destroy_Structure_AsCannonBall", + "objectives": [ + { + "name": "battlepass_damage_athena_player_as_cannonball", + "count": 25 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_ScopedWeapon_and_SilencedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ScopedWeapon_and_SilencedWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_silenced weapon", + "count": 1 + }, + { + "name": "battlepass_damage_athena_player_scopedweapon", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_TwoLocations_03", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_03", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_happy_or_pleasant", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_02A", + "templateId": "Quest:Quest_BR_Land_Chain_02A", + "objectives": [ + { + "name": "battlepass_land_athena_location_tilted_02_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_02B", + "templateId": "Quest:Quest_BR_Land_Chain_02B", + "objectives": [ + { + "name": "battlepass_land_athena_location_junk_02_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_02C", + "templateId": "Quest:Quest_BR_Land_Chain_02C", + "objectives": [ + { + "name": "battlepass_land_athena_location_retail_02_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_02D", + "templateId": "Quest:Quest_BR_Land_Chain_02D", + "objectives": [ + { + "name": "battlepass_land_athena_location_happy_02_d", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_02E", + "templateId": "Quest:Quest_BR_Land_Chain_02E", + "objectives": [ + { + "name": "battlepass_land_athena_location_pleasant_chain_02_e", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Outlive_90_Opponents", + "templateId": "Quest:Quest_BR_Outlive_90_Opponents", + "objectives": [ + { + "name": "quest_br_outlive_90_players_week4", + "count": 60 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Outlive_Opponents_Chain_2", + "templateId": "Quest:Quest_BR_Outlive_Opponents_Chain_2", + "objectives": [ + { + "name": "quest_br_outlive_players_chain_2", + "count": 70 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Outlive_Opponents_Chain_3", + "templateId": "Quest:Quest_BR_Outlive_Opponents_Chain_3", + "objectives": [ + { + "name": "quest_br_outlive_players_chain_3", + "count": 80 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_Hamsterball", + "templateId": "Quest:Quest_BR_Use_Hamsterball", + "objectives": [ + { + "name": "battlepass_athena_use_hamsterball", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_004" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_ScopedWeapon", + "templateId": "Quest:Quest_BR_Damage_ScopedWeapon", + "objectives": [ + { + "name": "battlepass_damage_athena_player_scoped_weapon", + "count": 200 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_Location_PirateCamps", + "templateId": "Quest:Quest_BR_Eliminate_Location_PirateCamps", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_piratecamps", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Geyser_Zipline_Vehicle_SingleMatch", + "templateId": "Quest:Quest_BR_Geyser_Zipline_Vehicle_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_use_geyser_01", + "count": 1 + }, + { + "name": "athena_battlepass_use_zipline_02", + "count": 1 + }, + { + "name": "athena_battlepass_use_vehicle_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseShifty", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_ParadiseShifty", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_paradise_or_shifty", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_A", + "templateId": "Quest:Quest_BR_Interact_ShieldItems_QuestChain_A", + "objectives": [ + { + "name": "athena_battlepass_shield_mushrooms_chain1", + "count": 50 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_B", + "templateId": "Quest:Quest_BR_Interact_ShieldItems_QuestChain_B", + "objectives": [ + { + "name": "athena_battlepass_shield_minipot_chain2", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ShieldItems_QuestChain_C", + "templateId": "Quest:Quest_BR_Interact_ShieldItems_QuestChain_C", + "objectives": [ + { + "name": "athena_battlepass_shield_bigpot_chain3", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_RaceTrack_HamsterBall", + "templateId": "Quest:Quest_BR_RaceTrack_HamsterBall", + "objectives": [ + { + "name": "athena_battlepass_complete_hamsterball_racetrack", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Throw_BouncyBallToy_MinBounces", + "templateId": "Quest:Quest_BR_Throw_BouncyBallToy_MinBounces", + "objectives": [ + { + "name": "battlepass_athena_bouncyball_minbounces", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_005" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_Flintlock_Or_CompoundBow", + "templateId": "Quest:Quest_BR_Eliminate_Flintlock_Or_CompoundBow", + "objectives": [ + { + "name": "battlepass_eliminate_player_flintlock_or_compoundbow", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_TwoLocations_05", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_05", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_lazylagoon_or_frostyflights", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "objectives": [ + { + "name": "battlepass_interact_athena_hiddenstar_treasuremap_01", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_03A", + "templateId": "Quest:Quest_BR_Land_Chain_03A", + "objectives": [ + { + "name": "battlepass_land_athena_location_fatal_03_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_03B", + "templateId": "Quest:Quest_BR_Land_Chain_03B", + "objectives": [ + { + "name": "battlepass_land_athena_location_lagoon_03_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_03C", + "templateId": "Quest:Quest_BR_Land_Chain_03C", + "objectives": [ + { + "name": "battlepass_land_athena_location_shifty_03_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_03D", + "templateId": "Quest:Quest_BR_Land_Chain_03D", + "objectives": [ + { + "name": "battlepass_land_athena_location_frosty_03_d", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_03E", + "templateId": "Quest:Quest_BR_Land_Chain_03E", + "objectives": [ + { + "name": "battlepass_land_athena_location_sunnysteps_03_e", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_Different_Throwable_Items_SingleMatch", + "templateId": "Quest:Quest_BR_Use_Different_Throwable_Items_SingleMatch", + "objectives": [ + { + "name": "battlepass_ability_thrown_item_explosivegrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_dynamite", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_gasgrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_stickygrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_dancegrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_portafortgrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_present", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_bottlerocket", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_sneakysnowman", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_boombox", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_chillergrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_impulsegrenade", + "count": 1 + }, + { + "name": "battlepass_ability_thrown_item_c4", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_Animal", + "templateId": "Quest:Quest_BR_Visit_Animal", + "objectives": [ + { + "name": "battlepass_visit_athena_location_wooden_rabbit", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_stone_pig", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_metal_llama", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_Highest_Elevations", + "templateId": "Quest:Quest_BR_Visit_Highest_Elevations", + "objectives": [ + { + "name": "battlepass_visit_highest_elevation_01", + "count": 1 + }, + { + "name": "battlepass_visit_highest_elevation_02", + "count": 1 + }, + { + "name": "battlepass_visit_highest_elevation_03", + "count": 1 + }, + { + "name": "battlepass_visit_highest_elevation_04", + "count": 1 + }, + { + "name": "battlepass_visit_highest_elevation_05", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_006" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Chain_Zipline_A", + "templateId": "Quest:Quest_BR_Damage_Chain_Zipline_A", + "objectives": [ + { + "name": "battlepass_damage_athena_player_zipline_while_riding_chain", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Chain_Zipline_B", + "templateId": "Quest:Quest_BR_Damage_Chain_Zipline_B", + "objectives": [ + { + "name": "battlepass_damage_athena_player_zipline_who_are_riding_chain", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_From_Above", + "templateId": "Quest:Quest_BR_Damage_From_Above", + "objectives": [ + { + "name": "battlepass_damage_athena_player_from_above", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_Location_Different", + "templateId": "Quest:Quest_BR_Eliminate_Location_Different", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pleasantpartk", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylagoon", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_sunnysteps", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_theblock", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_frostyflights", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_happyhamlet", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_loot_or_snobby", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_PirateCamps_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_PirateCamps_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_piratecamp_singlematch_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_03", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_04", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_05", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_06", + "count": 1 + }, + { + "name": "battlepass_visit_athena_piratecamp_singlematch_07", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_junk_chain_04_a", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_block_chain_04_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_pleasant_chain_04_b", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dusty_chain_04_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_04_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_happy_chain_04_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobby_chain_04_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_007" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_While_Using_Balloon", + "templateId": "Quest:Quest_BR_Damage_While_Using_Balloon", + "objectives": [ + { + "name": "battlepass_damage_opponents_while_using_balloon", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_50m", + "templateId": "Quest:Quest_BR_Eliminate_50m", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_50m_distance", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_TwoLocations_04", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_04", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_dusty_or_lucky", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_JigsawPuzzle", + "templateId": "Quest:Quest_BR_Interact_JigsawPuzzle", + "objectives": [ + { + "name": "battlepass_interact_athena_pieces_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_FORTNITE_Letters_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_15", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_16", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_17", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_18", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_19", + "count": 1 + }, + { + "name": "battlepass_interact_athena_pieces_20", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_01a", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_01a", + "objectives": [ + { + "name": "battlepass_interact_athena_treasuremap_chain_01a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "objectives": [ + { + "name": "battlepass_interact_athena_hiddenstar_treasuremap_04", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PhoneChain_Durrr", + "templateId": "Quest:Quest_BR_PhoneChain_Durrr", + "objectives": [ + { + "name": "battlepass_bigphone_chain_input_1", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_PhoneChain_Pizza", + "templateId": "Quest:Quest_BR_PhoneChain_Pizza", + "objectives": [ + { + "name": "battlepass_bigphone_chain_input_2", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_VendingMachine", + "templateId": "Quest:Quest_BR_Use_VendingMachine", + "objectives": [ + { + "name": "battlepass_interact_athena_vendingmachine", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_008" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Below", + "templateId": "Quest:Quest_BR_Damage_Below", + "objectives": [ + { + "name": "battlepass_damage_athena_player_below", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Dance_Chain_04_A", + "templateId": "Quest:Quest_BR_Dance_Chain_04_A", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Dance_Chain_04_B", + "templateId": "Quest:Quest_BR_Dance_Chain_04_B", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Dance_Chain_04_C", + "templateId": "Quest:Quest_BR_Dance_Chain_04_C", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_multigame", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_polar_or_lonely", + "count": 7 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_04A", + "templateId": "Quest:Quest_BR_Land_Chain_04A", + "objectives": [ + { + "name": "battlepass_land_athena_location_loot_04_a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_04B", + "templateId": "Quest:Quest_BR_Land_Chain_04B", + "objectives": [ + { + "name": "battlepass_land_athena_location_lucky_04_b", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_04C", + "templateId": "Quest:Quest_BR_Land_Chain_04C", + "objectives": [ + { + "name": "battlepass_land_athena_location_salty_04_c", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_04D", + "templateId": "Quest:Quest_BR_Land_Chain_04D", + "objectives": [ + { + "name": "battlepass_land_athena_location_lonely_04_d", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Land_Chain_04E", + "templateId": "Quest:Quest_BR_Land_Chain_04E", + "objectives": [ + { + "name": "battlepass_land_athena_location_haunted_04_e", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_Geyser_MultipleBeforeLanding", + "templateId": "Quest:Quest_BR_Use_Geyser_MultipleBeforeLanding", + "objectives": [ + { + "name": "battlepass_use_item_geyser_multiple_before_landing", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Use_SecondChanceMachine_ReviveTeammate", + "templateId": "Quest:Quest_BR_Use_SecondChanceMachine_ReviveTeammate", + "objectives": [ + { + "name": "battlepass_use_second_chance_machine_revive_teammate", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_009" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_01", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_01", + "objectives": [ + { + "name": "battlepass_collect_building_resources_wood_singlematch", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_02", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_02", + "objectives": [ + { + "name": "battlepass_collect_building_resources_stone_singlematch", + "count": 400 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_03", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SingleMatch_03", + "objectives": [ + { + "name": "battlepass_collect_building_resources_metal_singlematch", + "count": 300 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_After_VolcanoVent", + "templateId": "Quest:Quest_BR_Damage_After_VolcanoVent", + "objectives": [ + { + "name": "battlepass_place_athena_damage_after_volcano_vent", + "count": 100 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Damage_Infantry_or_Heavy", + "templateId": "Quest:Quest_BR_Damage_Infantry_or_Heavy", + "objectives": [ + { + "name": "battlepass_damage_athena_player_infantry_or_heavy", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_MaxDistance", + "templateId": "Quest:Quest_BR_Eliminate_MaxDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_maxdistance", + "count": 2 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Eliminate_TwoLocations_06", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_06", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_tiltedtowers_or_theblock", + "count": 3 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_02a", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_02a", + "objectives": [ + { + "name": "battlepass_interact_athena_treasuremap_chain_02a", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "objectives": [ + { + "name": "battlepass_interact_athena_hiddenstar_treasuremap_05", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Touch_FlamingRings_Cannon", + "templateId": "Quest:Quest_BR_Touch_FlamingRings_Cannon", + "objectives": [ + { + "name": "battlepass_touch_flamingrings_cannon_01", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_02", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_03", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_04", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_05", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_06", + "count": 1 + }, + { + "name": "battlepass_touch_flamingrings_cannon_07", + "count": 1 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Week_010" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_dragonninja_complete_weeklychallenges_01", + "count": 15 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_dragonninja_complete_weeklychallenges_02", + "count": 35 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_dragonninja_complete_weeklychallenges_03", + "count": 60 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 20000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 60000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 100000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 140000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_05", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 180000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_06", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_06", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 220000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_07", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_07", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 260000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_08", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_08", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 300000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_09", + "templateId": "Quest:Quest_BR_S8_DragonNinja_Gain_SeasonXP_09", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 340000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_DragonNinja" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_pirate_complete_weeklychallenges_01", + "count": 10 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_pirate_complete_weeklychallenges_02", + "count": 25 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S8_Pirate_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_pirate_complete_weeklychallenges_03", + "count": 45 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 10000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 40000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 80000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 120000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_05", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 160000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_06", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_06", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 200000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_07", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_07", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 240000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_08", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_08", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 280000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_09", + "templateId": "Quest:Quest_BR_S8_Pirate_Gain_SeasonXP_09", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 320000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Pirate" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Complete_Daily_Challenges", + "templateId": "Quest:Quest_BR_Ruin_Complete_Daily_Challenges", + "objectives": [ + { + "name": "athena_battlepass_ruin_complete_daily_challenges_01", + "count": 5 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Damage_Enemy_Structures", + "templateId": "Quest:Quest_BR_Ruin_Damage_Enemy_Structures", + "objectives": [ + { + "name": "battlepass_damage_ruin_athena_enemy_building", + "count": 10000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Destroy_Cars", + "templateId": "Quest:Quest_BR_Ruin_Destroy_Cars", + "objectives": [ + { + "name": "athena_battlepass_ruin_destroy_athena_cars", + "count": 20 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Destroy_Rocks", + "templateId": "Quest:Quest_BR_Ruin_Destroy_Rocks", + "objectives": [ + { + "name": "athena_battlepass_ruin_destroy_athena_rocks", + "count": 35 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Destroy_Trees", + "templateId": "Quest:Quest_BR_Ruin_Destroy_Trees", + "objectives": [ + { + "name": "athena_battlepass_ruin_destroy_athena_trees", + "count": 50 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_Ruin_Outlast", + "templateId": "Quest:Quest_BR_Ruin_Outlast", + "objectives": [ + { + "name": "athena_battlepass_ruin_outlast", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Cumulative_Ruin" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_01", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_01", + "objectives": [ + { + "name": "athena_shiny_outlive_01", + "count": 500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_02", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_02", + "objectives": [ + { + "name": "athena_shiny_outlive_02", + "count": 1000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_03", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_03", + "objectives": [ + { + "name": "athena_shiny_outlive_03", + "count": 2500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_04", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_04", + "objectives": [ + { + "name": "athena_shiny_outlive_04", + "count": 7500 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_05", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_05", + "objectives": [ + { + "name": "athena_shiny_outlive_05", + "count": 15000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + }, + { + "itemGuid": "S8-Quest:Quest_BR_S8_Shiny_Outlive_06", + "templateId": "Quest:Quest_BR_S8_Shiny_Outlive_06", + "objectives": [ + { + "name": "athena_shiny_outlive_06", + "count": 25000 + } + ], + "challenge_bundle_id": "S8-ChallengeBundle:QuestBundle_S8_Shiny" + } ] }, - { - "templateId": "Quest:Daily_DestroyServerRacks", - "objectives": [ - "quest_reactive_destroyserverrack_v2" + "Season9": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S9-ChallengeBundleSchedule:Schedule_14DaysOfSummer", + "templateId": "ChallengeBundleSchedule:Schedule_14DaysOfSummer", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Schedule_Birthday2019_BR", + "templateId": "ChallengeBundleSchedule:Schedule_Birthday2019_BR", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_Birthday2019_BR" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Schedule_LTM_Mash", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Mash", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_LTM_Mash" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Schedule_LTM_Wax", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_Wax", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_LTM_Wax" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Architect_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Architect_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Architect" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_BattleSuit_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_BattleSuit_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_BountyHunter_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_BountyHunter_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_BountyHunter" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_BunkerMan_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_BunkerMan_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_BunkerMan" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Cumulative_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Cumulative_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Fortbyte_Loadingscreen_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Fortbyte_Loadingscreen_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Fortbyte_LoadingScreen" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Fortbyte_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Fortbyte_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Free_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Free_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Week_001", + "S9-ChallengeBundle:QuestBundle_S9_Week_002", + "S9-ChallengeBundle:QuestBundle_S9_Week_003", + "S9-ChallengeBundle:QuestBundle_S9_Week_004", + "S9-ChallengeBundle:QuestBundle_S9_Week_005", + "S9-ChallengeBundle:QuestBundle_S9_Week_006", + "S9-ChallengeBundle:QuestBundle_S9_Week_007", + "S9-ChallengeBundle:QuestBundle_S9_Week_008", + "S9-ChallengeBundle:QuestBundle_S9_Week_009", + "S9-ChallengeBundle:QuestBundle_S9_Week_010" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Masako_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Masako_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Masako" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_OT_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_OT_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_Overtime" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_Paid_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_Paid_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot", + "S9-ChallengeBundle:QuestBundle_S9_Rooster" + ] + }, + { + "itemGuid": "S9-ChallengeBundleSchedule:Season9_StormTracker_Schedule", + "templateId": "ChallengeBundleSchedule:Season9_StormTracker_Schedule", + "granted_bundles": [ + "S9-ChallengeBundle:QuestBundle_S9_StormTracker" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer", + "templateId": "ChallengeBundle:QuestBundle_14DaysOfSummer", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_FDS_Dance_BeachParties", + "S9-Quest:Quest_BR_FDS_Touch_GiantBeachBall", + "S9-Quest:Quest_BR_FDS_Eliminate_Unvaulted_or_Drumgun", + "S9-Quest:Quest_BR_FDS_ThankBusDriver_and_Top20", + "S9-Quest:Quest_BR_FDS_Destroy_PartyBalloons", + "S9-Quest:Quest_BR_FDS_Interact_UnicornFloaties", + "S9-Quest:Quest_BR_FDS_HitPlayer_Waterballoon", + "S9-Quest:Quest_BR_FDS_Touch_GiantUmbrella", + "S9-Quest:Quest_BR_FDS_Score_Trickpoints_Driftboard", + "S9-Quest:Quest_BR_FDS_Interact_Fireworks", + "S9-Quest:Quest_BR_FDS_Score_BalloonBoard", + "S9-Quest:Quest_BR_FDS_Visit_DuckyBeachballUmbrella_SingleMatch", + "S9-Quest:Quest_BR_FDS_Interact_HiddenThing_InLoadingScreen", + "S9-Quest:Quest_BR_FDS_Destroy_Grills_WithUtensilPickaxes" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Schedule_14DaysOfSummer" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_Birthday2019_BR", + "templateId": "ChallengeBundle:QuestBundle_Birthday2019_BR", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Play_Birthday", + "S9-Quest:Quest_BR_Dance_ScavengerHunt_BirthdayCakes", + "S9-Quest:Quest_BR_Outlast_Birthday", + "S9-Quest:Quest_BR_Heal_BirthdayCake" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Schedule_Birthday2019_BR" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_LTM_Mash", + "templateId": "ChallengeBundle:QuestBundle_LTM_Mash", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Mash_Headshots", + "S9-Quest:Quest_BR_Mash_Eliminate_Exploders_Distance", + "S9-Quest:Quest_BR_Mash_Interact_ScoreMultiplier", + "S9-Quest:Quest_BR_Mash_Damage_Spawners", + "S9-Quest:Quest_BR_Mash_Eliminate_Golden", + "S9-Quest:Quest_BR_Mash_Win_NoDeath", + "S9-Quest:Quest_BR_Mash_TeamScore_Chain_A" + ], + "questStages": [ + "S9-Quest:Quest_BR_Mash_TeamScore_Chain_B", + "S9-Quest:Quest_BR_Mash_TeamScore_Chain_C", + "S9-Quest:Quest_BR_Mash_TeamScore_Chain_D" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Schedule_LTM_Mash" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_LTM_Wax", + "templateId": "ChallengeBundle:QuestBundle_LTM_Wax", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Wax_Win", + "S9-Quest:Quest_BR_Wax_Play_Matches", + "S9-Quest:Quest_BR_Wax_CollectCoins", + "S9-Quest:Quest_BR_Wax_CollectCoins_SingleMatch", + "S9-Quest:Quest_BR_Wax_Damage_Shotgun", + "S9-Quest:Quest_BR_Wax_Damage_Assault" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Schedule_LTM_Wax" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Architect", + "templateId": "ChallengeBundle:QuestBundle_S9_Architect", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Architect_Fortbyte_A", + "S9-Quest:Quest_BR_Architect_Fortbyte_B" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Architect_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit", + "templateId": "ChallengeBundle:QuestBundle_S9_BattleSuit", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_01", + "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_02", + "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_03", + "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_04", + "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_01", + "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_02", + "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_03", + "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_01", + "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_02", + "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_03", + "S9-Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_02" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_BattleSuit_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_BountyHunter", + "templateId": "ChallengeBundle:QuestBundle_S9_BountyHunter", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_BountyHunter_Outlive_01", + "S9-Quest:Quest_BR_S9_BountyHunter_Outlive_02", + "S9-Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_02" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_BountyHunter_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_BunkerMan", + "templateId": "ChallengeBundle:QuestBundle_S9_BunkerMan", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_02" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_BunkerMan_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S9_Cumulative", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_Cumulative_Collect_Glyphs", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_001", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_002", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_003", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_004", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_005", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_006", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_007", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_008", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_009", + "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_010" + ], + "questStages": [ + "S9-Quest:Quest_BR_S9_Cumulative_Quest01", + "S9-Quest:Quest_BR_S9_Cumulative_Quest03", + "S9-Quest:Quest_BR_S9_Cumulative_Quest05", + "S9-Quest:Quest_BR_S9_Cumulative_Quest07", + "S9-Quest:Quest_BR_S9_Cumulative_Quest09" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Cumulative_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte_LoadingScreen", + "templateId": "ChallengeBundle:QuestBundle_S9_Fortbyte_LoadingScreen", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Collect_All_Fortbytes" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Fortbyte_Loadingscreen_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte", + "templateId": "ChallengeBundle:QuestBundle_S9_Fortbyte", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_Fortbyte_00", + "S9-Quest:Quest_BR_S9_Fortbyte_01", + "S9-Quest:Quest_BR_S9_Fortbyte_02", + "S9-Quest:Quest_BR_S9_Fortbyte_03", + "S9-Quest:Quest_BR_S9_Fortbyte_04", + "S9-Quest:Quest_BR_S9_Fortbyte_05", + "S9-Quest:Quest_BR_S9_Fortbyte_06", + "S9-Quest:Quest_BR_S9_Fortbyte_07", + "S9-Quest:Quest_BR_S9_Fortbyte_08", + "S9-Quest:Quest_BR_S9_Fortbyte_09", + "S9-Quest:Quest_BR_S9_Fortbyte_10", + "S9-Quest:Quest_BR_S9_Fortbyte_11", + "S9-Quest:Quest_BR_S9_Fortbyte_12", + "S9-Quest:Quest_BR_S9_Fortbyte_13", + "S9-Quest:Quest_BR_S9_Fortbyte_14", + "S9-Quest:Quest_BR_S9_Fortbyte_15", + "S9-Quest:Quest_BR_S9_Fortbyte_16", + "S9-Quest:Quest_BR_S9_Fortbyte_17", + "S9-Quest:Quest_BR_S9_Fortbyte_18", + "S9-Quest:Quest_BR_S9_Fortbyte_19", + "S9-Quest:Quest_BR_S9_Fortbyte_20", + "S9-Quest:Quest_BR_S9_Fortbyte_21", + "S9-Quest:Quest_BR_S9_Fortbyte_22", + "S9-Quest:Quest_BR_S9_Fortbyte_23", + "S9-Quest:Quest_BR_S9_Fortbyte_24", + "S9-Quest:Quest_BR_S9_Fortbyte_25", + "S9-Quest:Quest_BR_S9_Fortbyte_26", + "S9-Quest:Quest_BR_S9_Fortbyte_27", + "S9-Quest:Quest_BR_S9_Fortbyte_28", + "S9-Quest:Quest_BR_S9_Fortbyte_29", + "S9-Quest:Quest_BR_S9_Fortbyte_30", + "S9-Quest:Quest_BR_S9_Fortbyte_31", + "S9-Quest:Quest_BR_S9_Fortbyte_32", + "S9-Quest:Quest_BR_S9_Fortbyte_33", + "S9-Quest:Quest_BR_S9_Fortbyte_34", + "S9-Quest:Quest_BR_S9_Fortbyte_35", + "S9-Quest:Quest_BR_S9_Fortbyte_36", + "S9-Quest:Quest_BR_S9_Fortbyte_37", + "S9-Quest:Quest_BR_S9_Fortbyte_38", + "S9-Quest:Quest_BR_S9_Fortbyte_39", + "S9-Quest:Quest_BR_S9_Fortbyte_40", + "S9-Quest:Quest_BR_S9_Fortbyte_41", + "S9-Quest:Quest_BR_S9_Fortbyte_42", + "S9-Quest:Quest_BR_S9_Fortbyte_43", + "S9-Quest:Quest_BR_S9_Fortbyte_44", + "S9-Quest:Quest_BR_S9_Fortbyte_45", + "S9-Quest:Quest_BR_S9_Fortbyte_46", + "S9-Quest:Quest_BR_S9_Fortbyte_47", + "S9-Quest:Quest_BR_S9_Fortbyte_48", + "S9-Quest:Quest_BR_S9_Fortbyte_49", + "S9-Quest:Quest_BR_S9_Fortbyte_50", + "S9-Quest:Quest_BR_S9_Fortbyte_51", + "S9-Quest:Quest_BR_S9_Fortbyte_52", + "S9-Quest:Quest_BR_S9_Fortbyte_53", + "S9-Quest:Quest_BR_S9_Fortbyte_54", + "S9-Quest:Quest_BR_S9_Fortbyte_55", + "S9-Quest:Quest_BR_S9_Fortbyte_56", + "S9-Quest:Quest_BR_S9_Fortbyte_57", + "S9-Quest:Quest_BR_S9_Fortbyte_58", + "S9-Quest:Quest_BR_S9_Fortbyte_59", + "S9-Quest:Quest_BR_S9_Fortbyte_60", + "S9-Quest:Quest_BR_S9_Fortbyte_61", + "S9-Quest:Quest_BR_S9_Fortbyte_62", + "S9-Quest:Quest_BR_S9_Fortbyte_63", + "S9-Quest:Quest_BR_S9_Fortbyte_64", + "S9-Quest:Quest_BR_S9_Fortbyte_65", + "S9-Quest:Quest_BR_S9_Fortbyte_66", + "S9-Quest:Quest_BR_S9_Fortbyte_67", + "S9-Quest:Quest_BR_S9_Fortbyte_68", + "S9-Quest:Quest_BR_S9_Fortbyte_69", + "S9-Quest:Quest_BR_S9_Fortbyte_70", + "S9-Quest:Quest_BR_S9_Fortbyte_71", + "S9-Quest:Quest_BR_S9_Fortbyte_72", + "S9-Quest:Quest_BR_S9_Fortbyte_73", + "S9-Quest:Quest_BR_S9_Fortbyte_74", + "S9-Quest:Quest_BR_S9_Fortbyte_75", + "S9-Quest:Quest_BR_S9_Fortbyte_76", + "S9-Quest:Quest_BR_S9_Fortbyte_77", + "S9-Quest:Quest_BR_S9_Fortbyte_78", + "S9-Quest:Quest_BR_S9_Fortbyte_79", + "S9-Quest:Quest_BR_S9_Fortbyte_80", + "S9-Quest:Quest_BR_S9_Fortbyte_81", + "S9-Quest:Quest_BR_S9_Fortbyte_82", + "S9-Quest:Quest_BR_S9_Fortbyte_83", + "S9-Quest:Quest_BR_S9_Fortbyte_84", + "S9-Quest:Quest_BR_S9_Fortbyte_85", + "S9-Quest:Quest_BR_S9_Fortbyte_86", + "S9-Quest:Quest_BR_S9_Fortbyte_87", + "S9-Quest:Quest_BR_S9_Fortbyte_88", + "S9-Quest:Quest_BR_S9_Fortbyte_89", + "S9-Quest:Quest_BR_S9_Fortbyte_90", + "S9-Quest:Quest_BR_S9_Fortbyte_91", + "S9-Quest:Quest_BR_S9_Fortbyte_92", + "S9-Quest:Quest_BR_S9_Fortbyte_93", + "S9-Quest:Quest_BR_S9_Fortbyte_94", + "S9-Quest:Quest_BR_S9_Fortbyte_95", + "S9-Quest:Quest_BR_S9_Fortbyte_96", + "S9-Quest:Quest_BR_S9_Fortbyte_97", + "S9-Quest:Quest_BR_S9_Fortbyte_98", + "S9-Quest:Quest_BR_S9_Fortbyte_99" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Fortbyte_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_001", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_001", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Use_WindTunnel_Chain_NeoTilted", + "S9-Quest:Quest_BR_Visit_SkyPlatforms", + "S9-Quest:Quest_BR_Damage_After_ShadowBomb", + "S9-Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "S9-Quest:Quest_BR_Eliminate_ScopedWeapon", + "S9-Quest:Quest_BR_Damage_Above_2Stories" + ], + "questStages": [ + "S9-Quest:Quest_BR_Damage_Above_4Stories", + "S9-Quest:Quest_BR_Damage_Above_6Stories", + "S9-Quest:Quest_BR_Use_WindTunnel_Chain_MegaMall" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_002", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_002", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Use_HVAC_DifferentMatches", + "S9-Quest:Quest_BR_Land_Chain_01_A", + "S9-Quest:Quest_BR_eliminate_TwoLocations_01", + "S9-Quest:Quest_BR_Damage_Pistol", + "S9-Quest:Quest_BR_Visit_ThreeQuestProps", + "S9-Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch", + "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_A" + ], + "questStages": [ + "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_B", + "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_C", + "S9-Quest:Quest_BR_Land_Chain_01_B", + "S9-Quest:Quest_BR_Land_Chain_01_C", + "S9-Quest:Quest_BR_Land_Chain_01_D", + "S9-Quest:Quest_BR_Land_Chain_01_E" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_003", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_003", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_TrickPoint_Driftboard", + "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "S9-Quest:Quest_BR_Damage_After_SlipStream", + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "S9-Quest:Quest_BR_Use_FlyingDisc_SelfCatch", + "S9-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "S9-Quest:Quest_BR_Damage_Weapons_Different_SingleMatch" + ], + "questStages": [ + "S9-Quest:Quest_BR_TrickPoint__Airtime_QuadCrasher", + "S9-Quest:Quest_BR_Destroy_Structure_Vehicle", + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_004", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_004", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Damage_SniperRifle", + "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_A", + "S9-Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "S9-Quest:Quest_BR_Destroy_SupplyDropDrone", + "S9-Quest:Quest_BR_Land_Chain_02A", + "S9-Quest:Quest_BR_Eliminate_TwoLocations_02", + "S9-Quest:Quest_BR_Visit_NamedLocations_SingleMatch" + ], + "questStages": [ + "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_B", + "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_C", + "S9-Quest:Quest_BR_Land_Chain_02B", + "S9-Quest:Quest_BR_Land_Chain_02C", + "S9-Quest:Quest_BR_Land_Chain_02D", + "S9-Quest:Quest_BR_Land_Chain_02E" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_005", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_005", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Damage_ThrownWeapons", + "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "S9-Quest:Quest_BR_Eliminate", + "S9-Quest:Quest_BR_RaceTrack_Chain_Arid", + "S9-Quest:Quest_BR_Use_Trap_DifferentMatches", + "S9-Quest:Quest_BR_Visit_Turbines", + "S9-Quest:Quest_BR_Eliminate_Location_SkyPlatforms" + ], + "questStages": [ + "S9-Quest:Quest_BR_RaceTrack_Chain_Cold", + "S9-Quest:Quest_BR_RaceTrack_Chain_Grassland" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_006", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_006", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Land_Chain_03A", + "S9-Quest:Quest_BR_Damage_SMG", + "S9-Quest:Quest_BR_Hotspots_Chain_Chests", + "S9-Quest:Quest_BR_Damage_Vehicle_Opponent", + "S9-Quest:Quest_BR_Use_DogSweater", + "S9-Quest:Quest_BR_Use_Different_Vehicles_SingleMatch", + "S9-Quest:Quest_BR_Eliminate_TwoLocations_03" + ], + "questStages": [ + "S9-Quest:Quest_BR_Hotspots_Chain_Ammo", + "S9-Quest:Quest_BR_Hotspots_Chain_Eliminate", + "S9-Quest:Quest_BR_Land_Chain_03B", + "S9-Quest:Quest_BR_Land_Chain_03C", + "S9-Quest:Quest_BR_Land_Chain_03D", + "S9-Quest:Quest_BR_Land_Chain_03E" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_007", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_007", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "S9-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "S9-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "S9-Quest:Quest_BR_Damage_Passenger_Vehicle", + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "S9-Quest:Quest_BR_Interact_Chest_VendingMachine_Campfire_SingleMatch", + "S9-Quest:Quest_BR_Eliminate_MaxDistance" + ], + "questStages": [ + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_008", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_008", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Heal_Shields", + "S9-Quest:Quest_BR_Visit_Clocks", + "S9-Quest:Quest_BR_Eliminate_TwoLocations_04", + "S9-Quest:Quest_BR_Damage_AssaultRifle", + "S9-Quest:Quest_BR_Land_Chain_04A", + "S9-Quest:Quest_BR_Airvent_Zipline_VolcanoVent_SingleMatch", + "S9-Quest:Quest_BR_Eliminate_Location_OutsidePOI" + ], + "questStages": [ + "S9-Quest:Quest_BR_Land_Chain_04B", + "S9-Quest:Quest_BR_Land_Chain_04C", + "S9-Quest:Quest_BR_Land_Chain_04D", + "S9-Quest:Quest_BR_Land_Chain_04E" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_009", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_009", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Use_ChugJug_ChillBronco", + "S9-Quest:Quest_BR_Visit_SolarArrays", + "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey", + "S9-Quest:Quest_BR_Damage_Headshot", + "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_05", + "S9-Quest:Quest_BR_Eliminate_Location_Different", + "S9-Quest:Quest_BR_Damage_After_VolcanoVent" + ], + "questStages": [ + "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Week_010", + "templateId": "ChallengeBundle:QuestBundle_S9_Week_010", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_Use_AirStrike", + "S9-Quest:Quest_BR_Damage_Shotgun", + "S9-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "S9-Quest:Quest_BR_Visit_Poster", + "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_A", + "S9-Quest:Quest_BR_Eliminate_TwoLocations_05", + "S9-Quest:Quest_BR_Damage_Pickaxe" + ], + "questStages": [ + "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_B", + "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_C" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Free_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Masako", + "templateId": "ChallengeBundle:QuestBundle_S9_Masako", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_Masako_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_Masako_CollectGlyphs_02" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Masako_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Overtime", + "templateId": "ChallengeBundle:QuestBundle_S9_Overtime", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01a", + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02a", + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03a", + "S9-Quest:Quest_BR_OT_Eliminate_Assist_Friend", + "S9-Quest:Quest_BR_OT_Damage_Shotgun", + "S9-Quest:Quest_BR_OT_Visit_LootPolarPressure", + "S9-Quest:Quest_BR_OT_Revive_Friend_DifferentMatches", + "S9-Quest:Quest_BR_OT_Damage_AssaultRifle", + "S9-Quest:Quest_BR_OT_Dance_Skeleton", + "S9-Quest:Quest_BR_OT_Top15_DuosSquads_WithFriend", + "S9-Quest:Quest_BR_OT_Damage_SMG", + "S9-Quest:Quest_BR_OT_Score_Soccer_Pitch" + ], + "questStages": [ + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01b", + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02b", + "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03b" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_OT_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_Rooster", + "templateId": "ChallengeBundle:QuestBundle_S9_Rooster", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_A", + "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_02" + ], + "questStages": [ + "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_B" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Paid_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot", + "templateId": "ChallengeBundle:QuestBundle_S9_StrawberryPilot", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_05", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_01", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_02", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_03", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_04", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_01", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_02", + "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_03", + "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_02", + "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_03", + "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_04" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_Paid_Schedule" + }, + { + "itemGuid": "S9-ChallengeBundle:QuestBundle_S9_StormTracker", + "templateId": "ChallengeBundle:QuestBundle_S9_StormTracker", + "grantedquestinstanceids": [ + "S9-Quest:Quest_BR_S9_StormTracker_CollectGlyphs_01", + "S9-Quest:Quest_BR_S9_StormTracker_CollectGlyphs_02" + ], + "challenge_bundle_schedule_id": "S9-ChallengeBundleSchedule:Season9_StormTracker_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Dance_BeachParties", + "templateId": "Quest:Quest_BR_FDS_Dance_BeachParties", + "objectives": [ + { + "name": "fds_dance_athena_beach_party_01", + "count": 1 + }, + { + "name": "fds_dance_athena_beach_party_02", + "count": 1 + }, + { + "name": "fds_dance_athena_beach_party_03", + "count": 1 + }, + { + "name": "fds_dance_athena_beach_party_04", + "count": 1 + }, + { + "name": "FDS_dance_athena_beach_party_05", + "count": 1 + }, + { + "name": "FDS_dance_athena_beach_party_06", + "count": 1 + }, + { + "name": "fds_dance_athena_beach_party_07", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Destroy_Grills_WithUtensilPickaxes", + "templateId": "Quest:Quest_BR_FDS_Destroy_Grills_WithUtensilPickaxes", + "objectives": [ + { + "name": "fds_destroy_athena_grills_with_utensil_pickaxes", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Destroy_PartyBalloons", + "templateId": "Quest:Quest_BR_FDS_Destroy_PartyBalloons", + "objectives": [ + { + "name": "fds_destroy_athena_partyballoons", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Eliminate_Unvaulted_or_Drumgun", + "templateId": "Quest:Quest_BR_FDS_Eliminate_Unvaulted_or_Drumgun", + "objectives": [ + { + "name": "fds_killingblow_athena_player_unvaulted_or_drumgun", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_HitPlayer_Waterballoon", + "templateId": "Quest:Quest_BR_FDS_HitPlayer_Waterballoon", + "objectives": [ + { + "name": "fds_hitplayer_athena_waterballoon", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Interact_Fireworks", + "templateId": "Quest:Quest_BR_FDS_Interact_Fireworks", + "objectives": [ + { + "name": "battlepass_interact_athena_fireworks_01", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_02", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_03", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_04", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_05", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_06", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_07", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_08", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_09", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_10", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_11", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_12", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_13", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_14", + "count": 1 + }, + { + "name": "battlepass_interact_athena_fireworks_15", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Interact_HiddenThing_InLoadingScreen", + "templateId": "Quest:Quest_BR_FDS_Interact_HiddenThing_InLoadingScreen", + "objectives": [ + { + "name": "fds_interact_athena_hidden_thing_in_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Interact_UnicornFloaties", + "templateId": "Quest:Quest_BR_FDS_Interact_UnicornFloaties", + "objectives": [ + { + "name": "fds_interact_athena_unicorn_floaty_01", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_02", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_03", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_04", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_05", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_06", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_07", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_08", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_09", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_10", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_11", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_12", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_13", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_14", + "count": 1 + }, + { + "name": "fds_interact_athena_unicorn_floaty_15", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Score_BalloonBoard", + "templateId": "Quest:Quest_BR_FDS_Score_BalloonBoard", + "objectives": [ + { + "name": "fds_score_athena_balloonboard", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Score_Trickpoints_Driftboard", + "templateId": "Quest:Quest_BR_FDS_Score_Trickpoints_Driftboard", + "objectives": [ + { + "name": "fds_score_athena_driftboard_surfwrap_trickpoints", + "count": 250000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_ThankBusDriver_and_Top20", + "templateId": "Quest:Quest_BR_FDS_ThankBusDriver_and_Top20", + "objectives": [ + { + "name": "fds_thank_athena_busdriver_top20_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Touch_GiantBeachBall", + "templateId": "Quest:Quest_BR_FDS_Touch_GiantBeachBall", + "objectives": [ + { + "name": "fds_touch_athena_giant_beach_ball", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Touch_GiantUmbrella", + "templateId": "Quest:Quest_BR_FDS_Touch_GiantUmbrella", + "objectives": [ + { + "name": "fds_touch_athena_giant_beach_umbrella", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_FDS_Visit_DuckyBeachballUmbrella_SingleMatch", + "templateId": "Quest:Quest_BR_FDS_Visit_DuckyBeachballUmbrella_SingleMatch", + "objectives": [ + { + "name": "fds_touch_athena_giant_beach_ducky_beachball_umbrella_singlematch_01", + "count": 1 + }, + { + "name": "fds_touch_athena_giant_beach_ducky_beachball_umbrella_singlematch_02", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_14DaysOfSummer" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Dance_ScavengerHunt_BirthdayCakes", + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_BirthdayCakes", + "objectives": [ + { + "name": "birthdaybundle_dance_location_birthdaycake_01", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_02", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_03", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_04", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_05", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_06", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_07", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_08", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_09", + "count": 1 + }, + { + "name": "birthdaybundle_dance_location_birthdaycake_10", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_Birthday2019_BR" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Heal_BirthdayCake", + "templateId": "Quest:Quest_BR_Heal_BirthdayCake", + "objectives": [ + { + "name": "battlepass_heal_athena_birthdaycake", + "count": 50 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_Birthday2019_BR" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Outlast_Birthday", + "templateId": "Quest:Quest_BR_Outlast_Birthday", + "objectives": [ + { + "name": "birthdaybundle_athena_outlast", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_Birthday2019_BR" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Play_Birthday", + "templateId": "Quest:Quest_BR_Play_Birthday", + "objectives": [ + { + "name": "birthdaybundle_athena_play_matches", + "count": 10 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_Birthday2019_BR" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Damage_Spawners", + "templateId": "Quest:Quest_BR_Mash_Damage_Spawners", + "objectives": [ + { + "name": "ltm_mash_damage_athena_spawners", + "count": 5000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Eliminate_Exploders_Distance", + "templateId": "Quest:Quest_BR_Mash_Eliminate_Exploders_Distance", + "objectives": [ + { + "name": "ltm_mash_eliminate_athena_exploders_distance", + "count": 20 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Eliminate_Golden", + "templateId": "Quest:Quest_BR_Mash_Eliminate_Golden", + "objectives": [ + { + "name": "ltm_mash_eliminate_athena_golden", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Headshots", + "templateId": "Quest:Quest_BR_Mash_Headshots", + "objectives": [ + { + "name": "ltm_mash_damage_athena_headshots", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Interact_ScoreMultiplier", + "templateId": "Quest:Quest_BR_Mash_Interact_ScoreMultiplier", + "objectives": [ + { + "name": "ltm_mash_interact_score_multiplier", + "count": 10 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_TeamScore_Chain_A", + "templateId": "Quest:Quest_BR_Mash_TeamScore_Chain_A", + "objectives": [ + { + "name": "ltm_mash_athena_team_score_a", + "count": 50000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_TeamScore_Chain_B", + "templateId": "Quest:Quest_BR_Mash_TeamScore_Chain_B", + "objectives": [ + { + "name": "ltm_mash_athena_team_score_b", + "count": 100000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_TeamScore_Chain_C", + "templateId": "Quest:Quest_BR_Mash_TeamScore_Chain_C", + "objectives": [ + { + "name": "ltm_mash_athena_team_score_c", + "count": 150000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_TeamScore_Chain_D", + "templateId": "Quest:Quest_BR_Mash_TeamScore_Chain_D", + "objectives": [ + { + "name": "ltm_mash_athena_team_score_d", + "count": 200000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Mash_Win_NoDeath", + "templateId": "Quest:Quest_BR_Mash_Win_NoDeath", + "objectives": [ + { + "name": "ltm_mash_athena_win_nodeath", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Mash" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_CollectCoins", + "templateId": "Quest:Quest_BR_Wax_CollectCoins", + "objectives": [ + { + "name": "ltm_wax_collect_athena_gold_coins", + "count": 120 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_CollectCoins_SingleMatch", + "templateId": "Quest:Quest_BR_Wax_CollectCoins_SingleMatch", + "objectives": [ + { + "name": "ltm_wax_collect_athena_gold_coins_single_match", + "count": 20 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_Damage_Assault", + "templateId": "Quest:Quest_BR_Wax_Damage_Assault", + "objectives": [ + { + "name": "ltm_wax_damage_athena_assault", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_Damage_Shotgun", + "templateId": "Quest:Quest_BR_Wax_Damage_Shotgun", + "objectives": [ + { + "name": "ltm_wax_damage_athena_shotgun", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_Play_Matches", + "templateId": "Quest:Quest_BR_Wax_Play_Matches", + "objectives": [ + { + "name": "ltm_wax_athena_play_matches", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Wax_Win", + "templateId": "Quest:Quest_BR_Wax_Win", + "objectives": [ + { + "name": "ltm_wax_athena_win", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_LTM_Wax" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Architect_Fortbyte_A", + "templateId": "Quest:Quest_BR_Architect_Fortbyte_A", + "objectives": [ + { + "name": "architect_collect_fortbytes_95", + "count": 95 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Architect" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Architect_Fortbyte_B", + "templateId": "Quest:Quest_BR_Architect_Fortbyte_B", + "objectives": [ + { + "name": "architect_collect_fortbytes_100", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Architect" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_battlesuit_collectglyphs_01", + "count": 80 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_BattleSuit_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_battlesuit_collectglyphs_02", + "count": 85 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_battlesuit_complete_weeklychallenges_01", + "count": 45 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_battlesuit_complete_weeklychallenges_02", + "count": 55 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_battlesuit_complete_weeklychallenges_03", + "count": 65 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 20000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 75000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 150000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 250000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_01", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Outlive_01", + "objectives": [ + { + "name": "athena_battlepass_battlesuit_outlive_01", + "count": 1000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_02", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Outlive_02", + "objectives": [ + { + "name": "athena_battlepass_battlesuit_outlive_02", + "count": 5000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BattleSuit_Outlive_03", + "templateId": "Quest:Quest_BR_S9_BattleSuit_Outlive_03", + "objectives": [ + { + "name": "athena_battlepass_battlesuit_outlive_03", + "count": 10000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BattleSuit" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_bountyhunter_collectglyphs_01", + "count": 50 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BountyHunter" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_BountyHunter_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_bountyhunter_collectglyphs_02", + "count": 55 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BountyHunter" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BountyHunter_Outlive_01", + "templateId": "Quest:Quest_BR_S9_BountyHunter_Outlive_01", + "objectives": [ + { + "name": "athena_battlepass_bountyhunter_outlive_01", + "count": 2500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BountyHunter" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BountyHunter_Outlive_02", + "templateId": "Quest:Quest_BR_S9_BountyHunter_Outlive_02", + "objectives": [ + { + "name": "athena_battlepass_bountyhunter_outlive_02", + "count": 7500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BountyHunter" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_bunkerjonesy_collectglyphs_01", + "count": 30 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BunkerMan" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_BunkerJonesy_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_bunkerjonesy_collectglyphs_02", + "count": 40 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_BunkerMan" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_001", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_001", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token01", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Quest01", + "templateId": "Quest:Quest_BR_S9_Cumulative_Quest01", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_01", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_002", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_002", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token02", + "count": 2 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_003", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_003", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token03", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Quest03", + "templateId": "Quest:Quest_BR_S9_Cumulative_Quest03", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_03", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_004", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_004", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token04", + "count": 4 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_005", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_005", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token05", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Quest05", + "templateId": "Quest:Quest_BR_S9_Cumulative_Quest05", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_05", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_006", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_006", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token06", + "count": 6 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_007", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_007", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token07", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Quest07", + "templateId": "Quest:Quest_BR_S9_Cumulative_Quest07", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_07", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_008", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_008", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token08", + "count": 8 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_009", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_009", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token09", + "count": 9 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Quest09", + "templateId": "Quest:Quest_BR_S9_Cumulative_Quest09", + "objectives": [ + { + "name": "battlepass_interact_cumulative_quest_09", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_CollectTokens_010", + "templateId": "Quest:Quest_BR_S9_Cumulative_CollectTokens_010", + "objectives": [ + { + "name": "battlepass_season9_cumulative_token10", + "count": 10 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Cumulative_Collect_Glyphs", + "templateId": "Quest:Quest_BR_S9_Cumulative_Collect_Glyphs", + "objectives": [ + { + "name": "athena_S9cumulative_collect_glyphs", + "count": 90 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Cumulative" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Collect_All_Fortbytes", + "templateId": "Quest:Quest_BR_Collect_All_Fortbytes", + "objectives": [ + { + "name": "battlepass_collect_all_fortbytes", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte_LoadingScreen" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_00", + "templateId": "Quest:Quest_BR_S9_Fortbyte_00", + "objectives": [ + { + "name": "glyph_00", + "count": 70 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_01", + "templateId": "Quest:Quest_BR_S9_Fortbyte_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 30000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_02", + "templateId": "Quest:Quest_BR_S9_Fortbyte_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 60000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_03", + "templateId": "Quest:Quest_BR_S9_Fortbyte_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 125000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_04", + "templateId": "Quest:Quest_BR_S9_Fortbyte_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 175000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_05", + "templateId": "Quest:Quest_BR_S9_Fortbyte_05", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 225000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_06", + "templateId": "Quest:Quest_BR_S9_Fortbyte_06", + "objectives": [ + { + "name": "glyph_06", + "count": 20 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_07", + "templateId": "Quest:Quest_BR_S9_Fortbyte_07", + "objectives": [ + { + "name": "glyph_07", + "count": 40 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_08", + "templateId": "Quest:Quest_BR_S9_Fortbyte_08", + "objectives": [ + { + "name": "glyph_08", + "count": 60 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_09", + "templateId": "Quest:Quest_BR_S9_Fortbyte_09", + "objectives": [ + { + "name": "glyph_09", + "count": 80 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_10", + "templateId": "Quest:Quest_BR_S9_Fortbyte_10", + "objectives": [ + { + "name": "glyph_10", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_11", + "templateId": "Quest:Quest_BR_S9_Fortbyte_11", + "objectives": [ + { + "name": "glyph_11", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_12", + "templateId": "Quest:Quest_BR_S9_Fortbyte_12", + "objectives": [ + { + "name": "glyph_12", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_13", + "templateId": "Quest:Quest_BR_S9_Fortbyte_13", + "objectives": [ + { + "name": "glyph_13", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_14", + "templateId": "Quest:Quest_BR_S9_Fortbyte_14", + "objectives": [ + { + "name": "glyph_14", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_15", + "templateId": "Quest:Quest_BR_S9_Fortbyte_15", + "objectives": [ + { + "name": "glyph_15", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_16", + "templateId": "Quest:Quest_BR_S9_Fortbyte_16", + "objectives": [ + { + "name": "glyph_16", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_17", + "templateId": "Quest:Quest_BR_S9_Fortbyte_17", + "objectives": [ + { + "name": "glyph_17", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_18", + "templateId": "Quest:Quest_BR_S9_Fortbyte_18", + "objectives": [ + { + "name": "glyph_18", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_19", + "templateId": "Quest:Quest_BR_S9_Fortbyte_19", + "objectives": [ + { + "name": "glyph_19", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_20", + "templateId": "Quest:Quest_BR_S9_Fortbyte_20", + "objectives": [ + { + "name": "glyph_20", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_21", + "templateId": "Quest:Quest_BR_S9_Fortbyte_21", + "objectives": [ + { + "name": "glyph_21", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_22", + "templateId": "Quest:Quest_BR_S9_Fortbyte_22", + "objectives": [ + { + "name": "glyph_22", + "count": 15 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_23", + "templateId": "Quest:Quest_BR_S9_Fortbyte_23", + "objectives": [ + { + "name": "glyph_23", + "count": 30 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_24", + "templateId": "Quest:Quest_BR_S9_Fortbyte_24", + "objectives": [ + { + "name": "glyph_24", + "count": 50 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_25", + "templateId": "Quest:Quest_BR_S9_Fortbyte_25", + "objectives": [ + { + "name": "glyph_25", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_26", + "templateId": "Quest:Quest_BR_S9_Fortbyte_26", + "objectives": [ + { + "name": "glyph_26", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_27", + "templateId": "Quest:Quest_BR_S9_Fortbyte_27", + "objectives": [ + { + "name": "glyph_27", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_28", + "templateId": "Quest:Quest_BR_S9_Fortbyte_28", + "objectives": [ + { + "name": "glyph_28", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_29", + "templateId": "Quest:Quest_BR_S9_Fortbyte_29", + "objectives": [ + { + "name": "glyph_29", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_30", + "templateId": "Quest:Quest_BR_S9_Fortbyte_30", + "objectives": [ + { + "name": "glyph_30", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_31", + "templateId": "Quest:Quest_BR_S9_Fortbyte_31", + "objectives": [ + { + "name": "glyph_31", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_32", + "templateId": "Quest:Quest_BR_S9_Fortbyte_32", + "objectives": [ + { + "name": "glyph_32", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_33", + "templateId": "Quest:Quest_BR_S9_Fortbyte_33", + "objectives": [ + { + "name": "glyph_33", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_34", + "templateId": "Quest:Quest_BR_S9_Fortbyte_34", + "objectives": [ + { + "name": "glyph_34", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_35", + "templateId": "Quest:Quest_BR_S9_Fortbyte_35", + "objectives": [ + { + "name": "glyph_35", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_36", + "templateId": "Quest:Quest_BR_S9_Fortbyte_36", + "objectives": [ + { + "name": "glyph_36", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_37", + "templateId": "Quest:Quest_BR_S9_Fortbyte_37", + "objectives": [ + { + "name": "glyph_37", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_38", + "templateId": "Quest:Quest_BR_S9_Fortbyte_38", + "objectives": [ + { + "name": "glyph_38", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_39", + "templateId": "Quest:Quest_BR_S9_Fortbyte_39", + "objectives": [ + { + "name": "glyph_39", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_40", + "templateId": "Quest:Quest_BR_S9_Fortbyte_40", + "objectives": [ + { + "name": "glyph_40", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_41", + "templateId": "Quest:Quest_BR_S9_Fortbyte_41", + "objectives": [ + { + "name": "glyph_41", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_42", + "templateId": "Quest:Quest_BR_S9_Fortbyte_42", + "objectives": [ + { + "name": "glyph_42", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_43", + "templateId": "Quest:Quest_BR_S9_Fortbyte_43", + "objectives": [ + { + "name": "glyph_43", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_44", + "templateId": "Quest:Quest_BR_S9_Fortbyte_44", + "objectives": [ + { + "name": "glyph_44", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_45", + "templateId": "Quest:Quest_BR_S9_Fortbyte_45", + "objectives": [ + { + "name": "glyph_45", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_46", + "templateId": "Quest:Quest_BR_S9_Fortbyte_46", + "objectives": [ + { + "name": "glyph_46", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_47", + "templateId": "Quest:Quest_BR_S9_Fortbyte_47", + "objectives": [ + { + "name": "glyph_47", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_48", + "templateId": "Quest:Quest_BR_S9_Fortbyte_48", + "objectives": [ + { + "name": "glyph_48", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_49", + "templateId": "Quest:Quest_BR_S9_Fortbyte_49", + "objectives": [ + { + "name": "glyph_49", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_50", + "templateId": "Quest:Quest_BR_S9_Fortbyte_50", + "objectives": [ + { + "name": "glyph_50", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_51", + "templateId": "Quest:Quest_BR_S9_Fortbyte_51", + "objectives": [ + { + "name": "glyph_51", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_52", + "templateId": "Quest:Quest_BR_S9_Fortbyte_52", + "objectives": [ + { + "name": "glyph_52", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_53", + "templateId": "Quest:Quest_BR_S9_Fortbyte_53", + "objectives": [ + { + "name": "glyph_53", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_54", + "templateId": "Quest:Quest_BR_S9_Fortbyte_54", + "objectives": [ + { + "name": "glyph_54", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_55", + "templateId": "Quest:Quest_BR_S9_Fortbyte_55", + "objectives": [ + { + "name": "glyph_55", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_56", + "templateId": "Quest:Quest_BR_S9_Fortbyte_56", + "objectives": [ + { + "name": "glyph_56", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_57", + "templateId": "Quest:Quest_BR_S9_Fortbyte_57", + "objectives": [ + { + "name": "glyph_57", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_58", + "templateId": "Quest:Quest_BR_S9_Fortbyte_58", + "objectives": [ + { + "name": "glyph_58", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_59", + "templateId": "Quest:Quest_BR_S9_Fortbyte_59", + "objectives": [ + { + "name": "glyph_59", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_60", + "templateId": "Quest:Quest_BR_S9_Fortbyte_60", + "objectives": [ + { + "name": "glyph_60", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_61", + "templateId": "Quest:Quest_BR_S9_Fortbyte_61", + "objectives": [ + { + "name": "glyph_61", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_62", + "templateId": "Quest:Quest_BR_S9_Fortbyte_62", + "objectives": [ + { + "name": "glyph_62", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_63", + "templateId": "Quest:Quest_BR_S9_Fortbyte_63", + "objectives": [ + { + "name": "glyph_63", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_64", + "templateId": "Quest:Quest_BR_S9_Fortbyte_64", + "objectives": [ + { + "name": "glyph_64", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_65", + "templateId": "Quest:Quest_BR_S9_Fortbyte_65", + "objectives": [ + { + "name": "glyph_65", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_66", + "templateId": "Quest:Quest_BR_S9_Fortbyte_66", + "objectives": [ + { + "name": "glyph_66", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_67", + "templateId": "Quest:Quest_BR_S9_Fortbyte_67", + "objectives": [ + { + "name": "glyph_67", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_68", + "templateId": "Quest:Quest_BR_S9_Fortbyte_68", + "objectives": [ + { + "name": "glyph_68", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_69", + "templateId": "Quest:Quest_BR_S9_Fortbyte_69", + "objectives": [ + { + "name": "glyph_69", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_70", + "templateId": "Quest:Quest_BR_S9_Fortbyte_70", + "objectives": [ + { + "name": "glyph_70", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_71", + "templateId": "Quest:Quest_BR_S9_Fortbyte_71", + "objectives": [ + { + "name": "glyph_71", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_72", + "templateId": "Quest:Quest_BR_S9_Fortbyte_72", + "objectives": [ + { + "name": "glyph_72", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_73", + "templateId": "Quest:Quest_BR_S9_Fortbyte_73", + "objectives": [ + { + "name": "glyph_73", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_74", + "templateId": "Quest:Quest_BR_S9_Fortbyte_74", + "objectives": [ + { + "name": "glyph_74", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_75", + "templateId": "Quest:Quest_BR_S9_Fortbyte_75", + "objectives": [ + { + "name": "glyph_75", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_76", + "templateId": "Quest:Quest_BR_S9_Fortbyte_76", + "objectives": [ + { + "name": "glyph_76", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_77", + "templateId": "Quest:Quest_BR_S9_Fortbyte_77", + "objectives": [ + { + "name": "glyph_77", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_78", + "templateId": "Quest:Quest_BR_S9_Fortbyte_78", + "objectives": [ + { + "name": "glyph_78", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_79", + "templateId": "Quest:Quest_BR_S9_Fortbyte_79", + "objectives": [ + { + "name": "glyph_79", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_80", + "templateId": "Quest:Quest_BR_S9_Fortbyte_80", + "objectives": [ + { + "name": "glyph_80", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_81", + "templateId": "Quest:Quest_BR_S9_Fortbyte_81", + "objectives": [ + { + "name": "glyph_81", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_82", + "templateId": "Quest:Quest_BR_S9_Fortbyte_82", + "objectives": [ + { + "name": "glyph_82", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_83", + "templateId": "Quest:Quest_BR_S9_Fortbyte_83", + "objectives": [ + { + "name": "glyph_83", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_84", + "templateId": "Quest:Quest_BR_S9_Fortbyte_84", + "objectives": [ + { + "name": "glyph_84", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_85", + "templateId": "Quest:Quest_BR_S9_Fortbyte_85", + "objectives": [ + { + "name": "glyph_85", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_86", + "templateId": "Quest:Quest_BR_S9_Fortbyte_86", + "objectives": [ + { + "name": "glyph_86", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_87", + "templateId": "Quest:Quest_BR_S9_Fortbyte_87", + "objectives": [ + { + "name": "glyph_87", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_88", + "templateId": "Quest:Quest_BR_S9_Fortbyte_88", + "objectives": [ + { + "name": "glyph_88", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_89", + "templateId": "Quest:Quest_BR_S9_Fortbyte_89", + "objectives": [ + { + "name": "glyph_89", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_90", + "templateId": "Quest:Quest_BR_S9_Fortbyte_90", + "objectives": [ + { + "name": "glyph_90", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_91", + "templateId": "Quest:Quest_BR_S9_Fortbyte_91", + "objectives": [ + { + "name": "glyph_91", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_92", + "templateId": "Quest:Quest_BR_S9_Fortbyte_92", + "objectives": [ + { + "name": "glyph_92", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_93", + "templateId": "Quest:Quest_BR_S9_Fortbyte_93", + "objectives": [ + { + "name": "glyph_93", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_94", + "templateId": "Quest:Quest_BR_S9_Fortbyte_94", + "objectives": [ + { + "name": "glyph_94", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_95", + "templateId": "Quest:Quest_BR_S9_Fortbyte_95", + "objectives": [ + { + "name": "glyph_95", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_96", + "templateId": "Quest:Quest_BR_S9_Fortbyte_96", + "objectives": [ + { + "name": "glyph_96", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_97", + "templateId": "Quest:Quest_BR_S9_Fortbyte_97", + "objectives": [ + { + "name": "glyph_97", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_98", + "templateId": "Quest:Quest_BR_S9_Fortbyte_98", + "objectives": [ + { + "name": "glyph_98", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Fortbyte_99", + "templateId": "Quest:Quest_BR_S9_Fortbyte_99", + "objectives": [ + { + "name": "glyph_99", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Fortbyte" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "templateId": "Quest:Quest_BR_Collect_LegendaryItem_DifferentMatches", + "objectives": [ + { + "name": "battlepass_collect_legendaryitem_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Above_2Stories", + "templateId": "Quest:Quest_BR_Damage_Above_2Stories", + "objectives": [ + { + "name": "battlepass_damage_athena_player_above_2stories", + "count": 300 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Above_4Stories", + "templateId": "Quest:Quest_BR_Damage_Above_4Stories", + "objectives": [ + { + "name": "battlepass_damage_athena_player_above_4stories", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Above_6Stories", + "templateId": "Quest:Quest_BR_Damage_Above_6Stories", + "objectives": [ + { + "name": "battlepass_damage_athena_player_above_6stories", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_After_ShadowBomb", + "templateId": "Quest:Quest_BR_Damage_After_ShadowBomb", + "objectives": [ + { + "name": "battlepass_place_athena_damage_after_shadow_bomb", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_ScopedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ScopedWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_scoped_weapon", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_01", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_01", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_WindTunnel_Chain_NeoTilted", + "templateId": "Quest:Quest_BR_Use_WindTunnel_Chain_NeoTilted", + "objectives": [ + { + "name": "battlepass_use_wind_tunnel_tilted", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_WindTunnel_Chain_MegaMall", + "templateId": "Quest:Quest_BR_Use_WindTunnel_Chain_MegaMall", + "objectives": [ + { + "name": "battlepass_use_wind_tunnel_retail", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_SkyPlatforms", + "templateId": "Quest:Quest_BR_Visit_SkyPlatforms", + "objectives": [ + { + "name": "battlepass_visit_athena_location_generic_4", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_5", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_6", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_7", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_8", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_9", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_seal_07", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_001" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Pistol", + "templateId": "Quest:Quest_BR_Damage_Pistol", + "objectives": [ + { + "name": "battlepass_damage_athena_player_pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_A", + "templateId": "Quest:Quest_BR_Eliminate_MinDistance_Chain_A", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_mindistance_chain_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_B", + "templateId": "Quest:Quest_BR_Eliminate_MinDistance_Chain_B", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_mindistance_chain_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_MinDistance_Chain_C", + "templateId": "Quest:Quest_BR_Eliminate_MinDistance_Chain_C", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_mindistance_chain_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_TwoLocations_01", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_01", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_01", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_happyhamlet", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_lazylagoon", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pressureplant", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_sunnysteps", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_theblock", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_01_A", + "templateId": "Quest:Quest_BR_Land_Chain_01_A", + "objectives": [ + { + "name": "battlepass_land_athena_chain_snobby_01_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_01_B", + "templateId": "Quest:Quest_BR_Land_Chain_01_B", + "objectives": [ + { + "name": "battlepass_land_athena_chain_fatal_01_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_01_C", + "templateId": "Quest:Quest_BR_Land_Chain_01_C", + "objectives": [ + { + "name": "battlepass_land_athena_chain_sunny_01_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_01_D", + "templateId": "Quest:Quest_BR_Land_Chain_01_D", + "objectives": [ + { + "name": "battlepass_land_athena_chain_dusty_01_d", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_01_E", + "templateId": "Quest:Quest_BR_Land_Chain_01_E", + "objectives": [ + { + "name": "battlepass_land_athena_chain_happy_01_e", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_HVAC_DifferentMatches", + "templateId": "Quest:Quest_BR_Use_HVAC_DifferentMatches", + "objectives": [ + { + "name": "battlepass_use_item_hvac", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_ThreeQuestProps", + "templateId": "Quest:Quest_BR_Visit_ThreeQuestProps", + "objectives": [ + { + "name": "battlepass_visit_athena_location_generic_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_03", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_002" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_After_SlipStream", + "templateId": "Quest:Quest_BR_Damage_After_SlipStream", + "objectives": [ + { + "name": "battlepass_place_athena_damage_after_slipstream", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Weapons_Different_SingleMatch", + "templateId": "Quest:Quest_BR_Damage_Weapons_Different_SingleMatch", + "objectives": [ + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_standard_lowtier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_standard_hightier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_heavy_lowtier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_heavy_hightier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_infantry_lowtier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_infantry_hightier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_scoped", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_assault_drum", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_bow_boombow", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_launcher_grenade", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_launcher_rocket", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_lmg_minigun", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_pistol_standard_lowtier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_pistol_standard_hightier", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_pistol_dual", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_pistol_handcannon", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_pistol_flintlock", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_shotgun_combat", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_shotgun_tactical", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_smg_burst", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_smg_suppressed", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_smg_compact", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_sniper_heavy", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_sniper_suppressed", + "count": 1 + }, + { + "name": "battlepass_damage_athena_weapons_different_singlematch_sniper_huntingrifle", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_explosives", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_02", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_02", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_TrickPoint_Driftboard", + "templateId": "Quest:Quest_BR_TrickPoint_Driftboard", + "objectives": [ + { + "name": "battlepass_score_athena_trick_point_driftboard", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_TrickPoint__Airtime_QuadCrasher", + "templateId": "Quest:Quest_BR_TrickPoint__Airtime_QuadCrasher", + "objectives": [ + { + "name": "battlepass_damage_athena_trick_point_airtime_quadcrasher", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Destroy_Structure_Vehicle", + "templateId": "Quest:Quest_BR_Destroy_Structure_Vehicle", + "objectives": [ + { + "name": "battlepass_destroy_athena_walls_with_vehicle", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_FlyingDisc_SelfCatch", + "templateId": "Quest:Quest_BR_Use_FlyingDisc_SelfCatch", + "objectives": [ + { + "name": "battlepass_use_item_flyingdisc_selfcatch", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_fatal_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shifty_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_sunny_chain_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dusty_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_01_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_haunted_chain_01_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_salty_chain_01", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_003" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_SniperRifle", + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_A", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_A", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_B", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_B", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_C", + "templateId": "Quest:Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_C", + "objectives": [ + { + "name": "battlepass_dance_chain_athena_scavengerhunt_locations_04_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Destroy_SupplyDropDrone", + "templateId": "Quest:Quest_BR_Destroy_SupplyDropDrone", + "objectives": [ + { + "name": "athena_battlepass_destroy_athena_supplydropdrone", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_TwoLocations_02", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_02", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_02", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "templateId": "Quest:Quest_BR_Eliminate_WeaponRarity_Legendary", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_goldrarity", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_02A", + "templateId": "Quest:Quest_BR_Land_Chain_02A", + "objectives": [ + { + "name": "battlepass_land_athena_location_polar_02_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_02B", + "templateId": "Quest:Quest_BR_Land_Chain_02B", + "objectives": [ + { + "name": "battlepass_land_athena_location_lazy_02_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_02C", + "templateId": "Quest:Quest_BR_Land_Chain_02C", + "objectives": [ + { + "name": "battlepass_land_athena_location_salty_02_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_02D", + "templateId": "Quest:Quest_BR_Land_Chain_02D", + "objectives": [ + { + "name": "battlepass_land_athena_location_block_02_d", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_02E", + "templateId": "Quest:Quest_BR_Land_Chain_02E", + "objectives": [ + { + "name": "battlepass_land_athena_location_lonely_02_e", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_location_dustydivot", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_fatalfields", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_frostyflights", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_happyhamlet", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_junkjunction", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lazylagoon", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_luckylanding", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_polarpeak", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pressureplant", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_sunnysteps", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_theblock", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_004" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_ThrownWeapons", + "templateId": "Quest:Quest_BR_Damage_ThrownWeapons", + "objectives": [ + { + "name": "battlepass_damage_athena_player_thrownweapon", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate", + "templateId": "Quest:Quest_BR_Eliminate", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_multigame", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Location_SkyPlatforms", + "templateId": "Quest:Quest_BR_Eliminate_Location_SkyPlatforms", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_skyplatforms", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_03", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_03", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_RaceTrack_Chain_Arid", + "templateId": "Quest:Quest_BR_RaceTrack_Chain_Arid", + "objectives": [ + { + "name": "athena_battlepass_complete_racetrack_chain_arid", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_RaceTrack_Chain_Cold", + "templateId": "Quest:Quest_BR_RaceTrack_Chain_Cold", + "objectives": [ + { + "name": "athena_battlepass_complete_racetrack_chain_cold", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_RaceTrack_Chain_Grassland", + "templateId": "Quest:Quest_BR_RaceTrack_Chain_Grassland", + "objectives": [ + { + "name": "athena_battlepass_complete_racetrack_chain_grassland", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_Trap_DifferentMatches", + "templateId": "Quest:Quest_BR_Use_Trap_DifferentMatches", + "objectives": [ + { + "name": "battlepass_interact_athena_place_trap_differentmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_Turbines", + "templateId": "Quest:Quest_BR_Visit_Turbines", + "objectives": [ + { + "name": "battlepass_visit_athena_location_generic_11", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_12", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_13", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_14", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_15", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_16", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_17", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_005" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Vehicle_Opponent", + "templateId": "Quest:Quest_BR_Damage_Vehicle_Opponent", + "objectives": [ + { + "name": "battlepass_damage_athena_vehicle_with_opponent_inside", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_TwoLocations_03", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_03", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_03", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Hotspots_Chain_Chests", + "templateId": "Quest:Quest_BR_Hotspots_Chain_Chests", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_hotspot", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Hotspots_Chain_Ammo", + "templateId": "Quest:Quest_BR_Hotspots_Chain_Ammo", + "objectives": [ + { + "name": "battlepass_interact_athena_ammobox_hotspot", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Hotspots_Chain_Eliminate", + "templateId": "Quest:Quest_BR_Hotspots_Chain_Eliminate", + "objectives": [ + { + "name": "battlepass_eliminate_athena_hotspot", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_03A", + "templateId": "Quest:Quest_BR_Land_Chain_03A", + "objectives": [ + { + "name": "battlepass_land_athena_location_lucky_03_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_03B", + "templateId": "Quest:Quest_BR_Land_Chain_03B", + "objectives": [ + { + "name": "battlepass_land_athena_location_loot_03_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_03C", + "templateId": "Quest:Quest_BR_Land_Chain_03C", + "objectives": [ + { + "name": "battlepass_land_athena_location_shifty_03_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_03D", + "templateId": "Quest:Quest_BR_Land_Chain_03D", + "objectives": [ + { + "name": "battlepass_land_athena_location_frosty_03_d", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_03E", + "templateId": "Quest:Quest_BR_Land_Chain_03E", + "objectives": [ + { + "name": "battlepass_land_athena_location_haunted_03_e", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_Different_Vehicles_SingleMatch", + "templateId": "Quest:Quest_BR_Use_Different_Vehicles_SingleMatch", + "objectives": [ + { + "name": "battlepass_use_vehicle_different_samematch_driftboard", + "count": 1 + }, + { + "name": "battlepass_use_vehicle_different_samematch_quadcrasher", + "count": 1 + }, + { + "name": "battlepass_use_vehicle_different_samematch_hamsterball", + "count": 1 + }, + { + "name": "battlepass_use_vehicle_different_samematch_pushcannon", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_DogSweater", + "templateId": "Quest:Quest_BR_Use_DogSweater", + "objectives": [ + { + "name": "athena_battlepass_use_item_dogsweater", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_006" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Passenger_Vehicle", + "templateId": "Quest:Quest_BR_Damage_Passenger_Vehicle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_passenger_vehicle", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_MaxDistance", + "templateId": "Quest:Quest_BR_Eliminate_MaxDistance", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_maxdistance", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_SuppressedWeapon", + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_with_suppressed_weapon", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_AmmoBox_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_ammo_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_happyhamlet", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lazylagoon", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_polarpeaks", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_pressureplant", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_sunnysteps", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_theblock", + "count": 1 + }, + { + "name": "battlepass_interact_ammo_athena_location_different_tiltedtowers", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_04", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_04", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chest_VendingMachine_Campfire_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_Chest_VendingMachine_Campfire_SingleMatch", + "objectives": [ + { + "name": "battlepass_interact_athena_chest_vend_camp_single_match_chest", + "count": 1 + }, + { + "name": "interact_athena_vendingmachine", + "count": 1 + }, + { + "name": "heal_player_health_anycampfire", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_A", + "objectives": [ + { + "name": "battlepass_visit_athena_location_block_chain_02_a", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_loot_chain_02_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_B", + "objectives": [ + { + "name": "battlepass_visit_athena_location_fatal_chain_02_b", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tilted_chain_02_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C", + "templateId": "Quest:Quest_BR_Visit_TwoNamedLocs_Chain_02_C", + "objectives": [ + { + "name": "battlepass_visit_athena_location_snobby_chain_02_c", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retail_chain_02_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_007" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Airvent_Zipline_VolcanoVent_SingleMatch", + "templateId": "Quest:Quest_BR_Airvent_Zipline_VolcanoVent_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_use_three_environmentals_geyser", + "count": 1 + }, + { + "name": "athena_battlepass_use_zipline_02", + "count": 1 + }, + { + "name": "athena_battlepass_use_hvac", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_AssaultRifle", + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_asssult", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Location_OutsidePOI", + "templateId": "Quest:Quest_BR_Eliminate_Location_OutsidePOI", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_outside_poi", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_TwoLocations_04", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_04", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_04", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Heal_Shields", + "templateId": "Quest:Quest_BR_Heal_Shields", + "objectives": [ + { + "name": "battlepass_heal_athena_shields", + "count": 400 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_04A", + "templateId": "Quest:Quest_BR_Land_Chain_04A", + "objectives": [ + { + "name": "battlepass_land_athena_location_paradise_04_a", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_04B", + "templateId": "Quest:Quest_BR_Land_Chain_04B", + "objectives": [ + { + "name": "battlepass_land_athena_location_tilted_04_b", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_04C", + "templateId": "Quest:Quest_BR_Land_Chain_04C", + "objectives": [ + { + "name": "battlepass_land_athena_location_retail_04_c", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_04D", + "templateId": "Quest:Quest_BR_Land_Chain_04D", + "objectives": [ + { + "name": "battlepass_land_athena_location_pleasant_04_d", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Land_Chain_04E", + "templateId": "Quest:Quest_BR_Land_Chain_04E", + "objectives": [ + { + "name": "battlepass_land_athena_location_junk_04_e", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_Clocks", + "templateId": "Quest:Quest_BR_Visit_Clocks", + "objectives": [ + { + "name": "battlepass_visit_athena_location_generic_18", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_19", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_20", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_21", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_25", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_008" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_After_VolcanoVent", + "templateId": "Quest:Quest_BR_Damage_After_VolcanoVent", + "objectives": [ + { + "name": "battlepass_place_athena_damage_after_volcano_vent", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Headshot", + "templateId": "Quest:Quest_BR_Damage_Headshot", + "objectives": [ + { + "name": "battlepass_damage_athena_player_head_shots", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Location_Different", + "templateId": "Quest:Quest_BR_Eliminate_Location_Different", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pleasantpartk", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylagoon", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_sunnysteps", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_theblock", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_frostyflights", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_happyhamlet", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pressureplant", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Grey", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_greyrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Green", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_greenrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Blue", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_bluerarity", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Purple", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_epicrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_RarityChain_Gold", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_goldrarity", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_Chests_TwoLocations_05", + "templateId": "Quest:Quest_BR_Interact_Chests_TwoLocations_05", + "objectives": [ + { + "name": "battlepass_interact_chests_twolocations_05", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_ChugJug_ChillBronco", + "templateId": "Quest:Quest_BR_Use_ChugJug_ChillBronco", + "objectives": [ + { + "name": "athena_battlepass_use_chug_or_throw_chillbronco", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_SolarArrays", + "templateId": "Quest:Quest_BR_Visit_SolarArrays", + "objectives": [ + { + "name": "battlepass_visit_athena_location_generic_22", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_23", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_generic_24", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_009" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_A", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_A", + "objectives": [ + { + "name": "battlepass_collect_building_resources_chain_specificlocations_wood", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_B", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_B", + "objectives": [ + { + "name": "battlepass_collect_building_resources_chain_specificlocations_stone", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_C", + "templateId": "Quest:Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_C", + "objectives": [ + { + "name": "battlepass_collect_building_resources_chain_specificlocations_metal", + "count": 100 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_pickaxe", + "count": 200 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Damage_Shotgun", + "templateId": "Quest:Quest_BR_Damage_Shotgun", + "objectives": [ + { + "name": "battlepass_Damage_athena_player_shotgun", + "count": 500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Eliminate_TwoLocations_05", + "templateId": "Quest:Quest_BR_Eliminate_TwoLocations_05", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_twolocations_05", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "templateId": "Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "objectives": [ + { + "name": "athena_battlepass_loot_ammobox_singlematch", + "count": 7 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Use_AirStrike", + "templateId": "Quest:Quest_BR_Use_AirStrike", + "objectives": [ + { + "name": "athena_battlepass_use_item_applesauce", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_Visit_Poster", + "templateId": "Quest:Quest_BR_Visit_Poster", + "objectives": [ + { + "name": "battlepass_visit_athena_propaganda_poster_1", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_2", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_3", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_4", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_5", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_6", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_7", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_8", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_9", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_10", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_11", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_12", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_13", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_14", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_15", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_16", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_17", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_18", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_19", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_20", + "count": 1 + }, + { + "name": "battlepass_visit_athena_propaganda_poster_21", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Week_010" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Masako_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_Masako_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_masako_collectglyphs_01", + "count": 70 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Masako" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Masako_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_Masako_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_masako_collectglyphs_02", + "count": 75 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Masako" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Damage_AssaultRifle", + "templateId": "Quest:Quest_BR_OT_Damage_AssaultRifle", + "objectives": [ + { + "name": "s9_ot_damage_athena_player_asssult", + "count": 2500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Damage_Shotgun", + "templateId": "Quest:Quest_BR_OT_Damage_Shotgun", + "objectives": [ + { + "name": "s9_ot_damage_athena_player_shotgun", + "count": 2500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Damage_SMG", + "templateId": "Quest:Quest_BR_OT_Damage_SMG", + "objectives": [ + { + "name": "s9_ot_damage_athena_player_smg", + "count": 2500 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Dance_Skeleton", + "templateId": "Quest:Quest_BR_OT_Dance_Skeleton", + "objectives": [ + { + "name": "s9_ot_athena_dance_overtime_location", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Eliminate_Assist_Friend", + "templateId": "Quest:Quest_BR_OT_Eliminate_Assist_Friend", + "objectives": [ + { + "name": "s9_ot_assist_friends_killingblow_athena_players", + "count": 25 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Revive_Friend_DifferentMatches", + "templateId": "Quest:Quest_BR_OT_Revive_Friend_DifferentMatches", + "objectives": [ + { + "name": "s9_ot_athena_revive_friend_differentmatches", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Score_Soccer_Pitch", + "templateId": "Quest:Quest_BR_OT_Score_Soccer_Pitch", + "objectives": [ + { + "name": "s9_ot_athena_score_goal", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Top15_DuosSquads_WithFriend", + "templateId": "Quest:Quest_BR_OT_Top15_DuosSquads_WithFriend", + "objectives": [ + { + "name": "s9_ot_top15_duos_squads_with_friend", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_OT_Visit_LootPolarPressure", + "templateId": "Quest:Quest_BR_OT_Visit_LootPolarPressure", + "objectives": [ + { + "name": "s9_ot_visit_polar", + "count": 1 + }, + { + "name": "s9_ot_visit_loot_polar_pressure", + "count": 1 + }, + { + "name": "s9_ot_visit_pressure", + "count": 1 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01a", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01a", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_01a", + "count": 23 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01b", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01b", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_01b", + "count": 3 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02a", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02a", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_02a", + "count": 71 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02b", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02b", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_02b", + "count": 6 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03a", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03a", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_03a", + "count": 87 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03b", + "templateId": "Quest:Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03b", + "objectives": [ + { + "name": "quest_s9_overtime_completequests_test_03b", + "count": 9 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Overtime" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_A", + "templateId": "Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_A", + "objectives": [ + { + "name": "athena_battlepass_rooster_collectglyphs_01_a", + "count": 10 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Rooster" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_B", + "templateId": "Quest:Quest_BR_S9_Rooster_CollectGlyphs_01_B", + "objectives": [ + { + "name": "athena_battlepass_rooster_collectglyphs_01_b", + "count": 99 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Rooster" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_Rooster_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_Rooster_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_rooster_collectglyphs_02", + "count": 20 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_Rooster" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_strawberrypilot_collectglyphs_01", + "count": 5 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_strawberrypilot_collectglyphs_02", + "count": 15 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_03", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_03", + "objectives": [ + { + "name": "athena_battlepass_strawberrypilot_collectglyphs_03", + "count": 25 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_04", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_04", + "objectives": [ + { + "name": "athena_battlepass_strawberrypilot_collectglyphs_04", + "count": 35 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_05", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_CollectGlyphs_05", + "objectives": [ + { + "name": "athena_battlepass_strawberrypilot_collectglyphs_05", + "count": 45 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_01", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_01", + "objectives": [ + { + "name": "athena_strawberrypilot_complete_weeklychallenges_01", + "count": 10 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_02", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_02", + "objectives": [ + { + "name": "athena_strawberrypilot_complete_weeklychallenges_02", + "count": 20 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_03", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_03", + "objectives": [ + { + "name": "athena_strawberrypilot_complete_weeklychallenges_03", + "count": 30 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_01", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_01", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 10000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_02", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_02", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 50000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_03", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_03", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 100000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_04", + "templateId": "Quest:Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_04", + "objectives": [ + { + "name": "athena_season_xp_gained", + "count": 200000 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StrawberryPilot" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StormTracker_CollectGlyphs_01", + "templateId": "Quest:Quest_BR_S9_StormTracker_CollectGlyphs_01", + "objectives": [ + { + "name": "athena_battlepass_stormtracker_collectglyphs_01", + "count": 60 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StormTracker" + }, + { + "itemGuid": "S9-Quest:Quest_BR_S9_StormTracker_CollectGlyphs_02", + "templateId": "Quest:Quest_BR_S9_StormTracker_CollectGlyphs_02", + "objectives": [ + { + "name": "athena_battlepass_stormtracker_collectglyphs_02", + "count": 65 + } + ], + "challenge_bundle_id": "S9-ChallengeBundle:QuestBundle_S9_StormTracker" + } ] }, - { - "templateId": "Quest:Daily_DestroyTransformers", - "objectives": [ - "quest_reactive_destroytransform_v3" + "Season10": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week01", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week01", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week02", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week02", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week03", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week03", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week04", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week04", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week05", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week05", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week06", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week06", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week07", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week07", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week08", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week08", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week09", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week09", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week10", + "templateId": "ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week10", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_BlackKnight_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_BlackKnight_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_DJYonger_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_DJYonger_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Drift_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_Drift_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_Mission_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:MissionBundle_S10_01A", + "S10-ChallengeBundle:MissionBundle_S10_01B", + "S10-ChallengeBundle:MissionBundle_S10_02", + "S10-ChallengeBundle:MissionBundle_S10_03", + "S10-ChallengeBundle:MissionBundle_S10_04", + "S10-ChallengeBundle:MissionBundle_S10_05", + "S10-ChallengeBundle:MissionBundle_S10_06", + "S10-ChallengeBundle:MissionBundle_S10_07", + "S10-ChallengeBundle:MissionBundle_S10_08", + "S10-ChallengeBundle:MissionBundle_S10_09" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_NightNight_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_NightNight_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_S10_NightNight" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_OT_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_OT_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_S10_OT" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_RustLord_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_RustLord_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Schedule_Event_BlackMonday", + "templateId": "ChallengeBundleSchedule:Season10_Schedule_Event_BlackMonday", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Schedule_Event_Oak", + "templateId": "ChallengeBundleSchedule:Season10_Schedule_Event_Oak", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_Event_Oak" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Schedule_MysteryMission", + "templateId": "ChallengeBundleSchedule:Season10_Schedule_MysteryMission", + "granted_bundles": [ + "S10-ChallengeBundle:MissionBundle_S10_Mystery" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_SeasonLevel_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_SeasonLevel_Mission_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_SeasonX_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_SeasonX_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Sparkle_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_Sparkle_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Teknique_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_Teknique_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + ] + }, + { + "itemGuid": "S10-ChallengeBundleSchedule:Season10_Voyager_Schedule", + "templateId": "ChallengeBundleSchedule:Season10_Voyager_Schedule", + "granted_bundles": [ + "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week01", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_PlayFriend_Matches", + "S10-Quest:Quest_BR_Daily_Eliminations_Close", + "S10-Quest:Quest_BR_Daily_UseVehicle_Mech", + "S10-Quest:Quest_BR_Daily_Items_GainShield", + "S10-Quest:Quest_BR_Daily_Damage_Below", + "S10-Quest:Quest_BR_Daily_Search_Chests_Dusty_Pleasant", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week02", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Placement_SoloOrDuo_Top10", + "S10-Quest:Quest_BR_Daily_Eliminations_Pistol", + "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk", + "S10-Quest:Quest_BR_Daily_Damage_SupplyDrop", + "S10-Quest:Quest_BR_Daily_Items_EachRarity", + "S10-Quest:Quest_BR_Daily_LandAt_Tilted_Fatal", + "S10-Quest:Quest_BR_Daily_Damage_Assault" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week03", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Damage_Explosive", + "S10-Quest:Quest_BR_Daily_Eliminations_Shotgun", + "S10-Quest:Quest_BR_Daily_Eliminate_Zombies", + "S10-Quest:Quest_BR_Daily_Outlast_DuoOrSquads", + "S10-Quest:Quest_BR_Daily_Items_UseThrown_DifferentMatches", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky", + "S10-Quest:Quest_BR_Daily_Search_Chests_Salty_Frosty" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week04", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Items_Consume_GlitchyForaged", + "S10-Quest:Quest_BR_Daily_Play_Arena", + "S10-Quest:Quest_BR_Daily_Eliminations_Scoped", + "S10-Quest:Quest_BR_Daily_Damage_Headshot", + "S10-Quest:Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch", + "S10-Quest:Quest_BR_Daily_LandAt_Pressure_Happy", + "S10-Quest:Quest_BR_Daily_Damage_Structures" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week05", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Damage_Pickaxe", + "S10-Quest:Quest_BR_Daily_Eliminations_FarAway", + "S10-Quest:Quest_BR_Daily_Items_UseTrap_DifferentMatches", + "S10-Quest:Quest_BR_Daily_Placement_DuoOrSquad_Top5", + "S10-Quest:Quest_BR_Daily_Damage_Above", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy", + "S10-Quest:Quest_BR_Daily_Search_Chests_Shifty_Haunted" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week06", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Eliminations_Sniper", + "S10-Quest:Quest_BR_Daily_Outlast_SoloOrDuo", + "S10-Quest:Quest_BR_Daily_Damage_Scoped", + "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely", + "S10-Quest:Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch", + "S10-Quest:Quest_BR_Daily_LandAt_Meteor_Island", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week07", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Eliminations_Explosive", + "S10-Quest:Quest_BR_Daily_Items_UseDifferentTrap", + "S10-Quest:Quest_BR_Daily_Search_ChestAmmoVending_SameMatch", + "S10-Quest:Quest_BR_Daily_Damage_Shotgun", + "S10-Quest:Quest_BR_Daily_LandAt_Frosty_Haunted", + "S10-Quest:Quest_BR_Daily_Damage_Pistol", + "S10-Quest:Quest_BR_Daily_Search_Chests_Greasy_Sunny" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week08", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Damage_SingleMatch", + "S10-Quest:Quest_BR_Daily_LandAt_Salty_Junk", + "S10-Quest:Quest_BR_Daily_Eliminations_Suppressed", + "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch", + "S10-Quest:Quest_BR_Daily_Search_Chests_HotSpot", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Retail_Block", + "S10-Quest:Quest_BR_Daily_Damage_SMG" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week09", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Search_SupplyDrops", + "S10-Quest:Quest_BR_Daily_Eliminations_SMG", + "S10-Quest:Quest_BR_Daily_LandAt_Polar_Moisty", + "S10-Quest:Quest_BR_Daily_Damage_Sniper", + "S10-Quest:Quest_BR_Daily_Items_GainHealth", + "S10-Quest:Quest_BR_Daily_Search_Chests_SingleMatch", + "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10", + "templateId": "ChallengeBundle:QuestBundle_BR_S10_Daily_Week10", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Daily_Damage_Suppressed", + "S10-Quest:Quest_BR_Daily_Outlast_SoloOrSquad", + "S10-Quest:Quest_BR_Daily_Eliminations_Assault", + "S10-Quest:Quest_BR_Daily_Search_Chests_Loot_Happy", + "S10-Quest:Quest_BR_Daily_LandAt_Lucky_Retail", + "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_SingleMatch", + "S10-Quest:Quest_BR_Daily_Visit_DifferentLocations" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Schedule_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_BlackKnightRemix_01", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_02", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_03", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_04", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_05", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_06", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_07", + "S10-Quest:Quest_S10_Style_BlackKnightRemix_08" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_BlackKnight_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_DJYonger", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_DJRemix_01", + "S10-Quest:Quest_S10_Style_DJRemix_02", + "S10-Quest:Quest_S10_Style_DJRemix_03", + "S10-Quest:Quest_S10_Style_DJRemix_04", + "S10-Quest:Quest_S10_Style_DJRemix_05", + "S10-Quest:Quest_S10_Style_DJRemix_06", + "S10-Quest:Quest_S10_Style_DJRemix_07", + "S10-Quest:Quest_S10_Style_DJRemix_08", + "S10-Quest:Quest_S10_Style_DJRemix_09", + "S10-Quest:Quest_S10_Style_DJRemix_10" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_DJYonger_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_Drift", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_StreetRacerDrift_01", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_02", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_03", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_04", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_05", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_06", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_07", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_08", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_09", + "S10-Quest:Quest_S10_Style_StreetRacerDrift_10" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Drift_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_01A", + "templateId": "ChallengeBundle:MissionBundle_S10_01A", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Visit_DurrrStoneheadDino", + "S10-Quest:Quest_BR_Damage_Passenger_Vehicle", + "S10-Quest:Quest_BR_Destroy_Sign_WearingDrift", + "S10-Quest:Quest_BR_Use_Zipline_DifferentMatches", + "S10-Quest:Quest_BR_Interact_Chests_Locations_Different", + "S10-Quest:Quest_BR_Visit_LazylagoonLuckylanding_SingleMatch", + "S10-Quest:Quest_BR_TrickPoint_Vehicle", + "S10-Quest:Quest_BR_Visit_DurrrStoneheadDino_Prestige", + "S10-Quest:Quest_BR_Eliminate_Passenger_Vehicle_Prestige", + "S10-Quest:Quest_BR_Destroy_Sign_SingleMatch_WearingDrift_Prestige", + "S10-Quest:Quest_BR_Damage_Zipline_Prestige", + "S10-Quest:Quest_BR_Eliminate_Different_Named_Locations_Prestige", + "S10-Quest:Quest_BR_Visit_NamedLocations_SingleMatch_Prestige", + "S10-Quest:Quest_BR_TrickPoint_Vehicle_Prestige" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_01B", + "templateId": "ChallengeBundle:MissionBundle_S10_01B", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_PlayMatches_MinimumOneElim_TeamRumble", + "S10-Quest:Quest_BR_WinMatches_TeamRumble", + "S10-Quest:Quest_BR_Assist_Teammates_TeamRumble", + "S10-Quest:Quest_BR_Build_Structures_TeamRumble_RustLord", + "S10-Quest:Quest_BR_Damage_Opponents_SingleMatch_TeamRumble", + "S10-Quest:Quest_BR_Eliminate_5m_TeamRumble", + "S10-Quest:Quest_BR_Search_SupplyDrops_TeamRumble", + "S10-Quest:Quest_BR_Eliminations_TeamRumble_SingleMatch", + "S10-Quest:Quest_BR_Eliminate_100m_TeamRumble", + "S10-Quest:Quest_BR_Assist_Teammates_SingleMatch_TeamRumble", + "S10-Quest:Quest_BR_Damage_UniqueOpponents_TeamRumble", + "S10-Quest:Quest_BR_Interact_Chests_TeamRumble_RustLord", + "S10-Quest:Quest_BR_Damage_Headshot_TeamRumble", + "S10-Quest:Quest_BR_Search_SupplyDrops_SingleMatch_TeamRumble" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_02", + "templateId": "ChallengeBundle:MissionBundle_S10_02", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Damage_SMG", + "S10-Quest:Quest_BR_Spray_Fountain_JunkyardCrane_VendingMachine", + "S10-Quest:Quest_BR_Spray_GasStations_Different", + "S10-Quest:Quest_BR_Interact_Spraycans", + "S10-Quest:Quest_BR_Damage_Structure_Minigun", + "S10-Quest:Quest_BR_Eliminate_15m_SMG", + "S10-Quest:Quest_BR_Interact_Chests_Location_TiltedTowers", + "S10-Quest:Quest_BR_Eliminate_Weapon_SMG_SingleMatch", + "S10-Quest:Quest_BR_Interact_Chests_WindowedContainers", + "S10-Quest:Quest_BR_SprayVehicles_DifferentLocation", + "S10-Quest:Quest_BR_Visit_GraffitiBillboards", + "S10-Quest:Quest_BR_Damage_Minigun_Prestige", + "S10-Quest:Quest_BR_Eliminate_5m_SMG", + "S10-Quest:Quest_BR_Eliminate_Location_TiltedTowers_Graffitiremix" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_03", + "templateId": "ChallengeBundle:MissionBundle_S10_03", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_S10_WorldsCollide_001", + "S10-Quest:Quest_BR_S10_WorldsCollide_002", + "S10-Quest:Quest_BR_S10_WorldsCollide_003", + "S10-Quest:Quest_BR_S10_WorldsCollide_004", + "S10-Quest:Quest_BR_S10_WorldsCollide_005", + "S10-Quest:Quest_BR_S10_WorldsCollide_006", + "S10-Quest:Quest_BR_S10_WorldsCollide_007", + "S10-Quest:Quest_BR_S10_WorldsCollide_008", + "S10-Quest:Quest_BR_S10_WorldsCollide_009", + "S10-Quest:Quest_BR_S10_WorldsCollide_010", + "S10-Quest:Quest_BR_S10_WorldsCollide_011", + "S10-Quest:Quest_BR_S10_WorldsCollide_012", + "S10-Quest:Quest_BR_S10_WorldsCollide_013", + "S10-Quest:Quest_BR_S10_WorldsCollide_014" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_04", + "templateId": "ChallengeBundle:MissionBundle_S10_04", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Search_AfterLanding", + "S10-Quest:Quest_BR_Land_HotSpot", + "S10-Quest:Quest_BR_Damage_AfterLaunchpad", + "S10-Quest:Quest_BR_Search_WithinTimer_01", + "S10-Quest:Quest_BR_Loot_Legendary", + "S10-Quest:Quest_BR_Search_SupplyDrop_AfterLanding", + "S10-Quest:Quest_BR_DamageOpponents_HotSpot", + "S10-Quest:Quest_BR_Search_ChestAmmo_AfterJumping", + "S10-Quest:Quest_BR_Destroy_SuperDingo_AfterJumping", + "S10-Quest:Quest_BR_Eliminate_AfterLaunchpad", + "S10-Quest:Quest_BR_Search_WithinTimer_02", + "S10-Quest:Quest_BR_Collect_Legendary", + "S10-Quest:Quest_BR_Harvest_AfterJumping", + "S10-Quest:Quest_BR_Eliminate_HotSpot" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_05", + "templateId": "ChallengeBundle:MissionBundle_S10_05", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_W05_Q01", + "S10-Quest:Quest_S10_W05_Q02", + "S10-Quest:Quest_S10_W05_Q03", + "S10-Quest:Quest_S10_W05_Q04", + "S10-Quest:Quest_S10_W05_Q05", + "S10-Quest:Quest_S10_W05_Q06", + "S10-Quest:Quest_S10_W05_Q07", + "S10-Quest:Quest_S10_W05_Q08", + "S10-Quest:Quest_S10_W05_Q09", + "S10-Quest:Quest_S10_W05_Q10", + "S10-Quest:Quest_S10_W05_Q11", + "S10-Quest:Quest_S10_W05_Q12", + "S10-Quest:Quest_S10_W05_Q13", + "S10-Quest:Quest_S10_W05_Q14" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_06", + "templateId": "ChallengeBundle:MissionBundle_S10_06", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_W006_Q01", + "S10-Quest:Quest_S10_W006_Q02", + "S10-Quest:Quest_S10_W006_Q05", + "S10-Quest:Quest_S10_W006_Q03", + "S10-Quest:Quest_S10_W006_Q06", + "S10-Quest:Quest_S10_W006_Q12", + "S10-Quest:Quest_S10_W006_Q07", + "S10-Quest:Quest_S10_W006_Q08", + "S10-Quest:Quest_S10_W006_Q09", + "S10-Quest:Quest_S10_W006_Q10", + "S10-Quest:Quest_S10_W006_Q11", + "S10-Quest:Quest_S10_W006_Q13", + "S10-Quest:Quest_S10_W006_Q14", + "S10-Quest:Quest_S10_W006_Q04" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_07", + "templateId": "ChallengeBundle:MissionBundle_S10_07", + "grantedquestinstanceids": [ + "S10-Quest:quest_s10_w07_q01", + "S10-Quest:quest_s10_w07_q02", + "S10-Quest:quest_s10_w07_q03", + "S10-Quest:quest_s10_w07_q04", + "S10-Quest:quest_s10_w07_q05", + "S10-Quest:quest_s10_w07_q06", + "S10-Quest:quest_s10_w07_q07", + "S10-Quest:quest_s10_w07_q08", + "S10-Quest:quest_s10_w07_q09", + "S10-Quest:quest_s10_w07_q10", + "S10-Quest:quest_s10_w07_q11", + "S10-Quest:quest_s10_w07_q12", + "S10-Quest:quest_s10_w07_q13", + "S10-Quest:quest_s10_w07_q14" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_08", + "templateId": "ChallengeBundle:MissionBundle_S10_08", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_W008_Q08", + "S10-Quest:Quest_S10_W008_Q02", + "S10-Quest:Quest_S10_W008_Q10", + "S10-Quest:Quest_S10_W008_Q04", + "S10-Quest:Quest_S10_W008_Q05", + "S10-Quest:Quest_S10_W008_Q13", + "S10-Quest:Quest_S10_W008_Q07", + "S10-Quest:Quest_S10_W008_Q01", + "S10-Quest:Quest_S10_W008_Q09", + "S10-Quest:Quest_S10_W008_Q03", + "S10-Quest:Quest_S10_W008_Q11", + "S10-Quest:Quest_S10_W008_Q12", + "S10-Quest:Quest_S10_W008_Q06", + "S10-Quest:Quest_S10_W008_Q14" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_09", + "templateId": "ChallengeBundle:MissionBundle_S10_09", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_W009_Q01", + "S10-Quest:Quest_S10_W009_Q02", + "S10-Quest:Quest_S10_W009_Q03", + "S10-Quest:Quest_S10_W009_Q04", + "S10-Quest:Quest_S10_W009_Q05", + "S10-Quest:Quest_S10_W009_Q06", + "S10-Quest:Quest_S10_W009_Q07", + "S10-Quest:Quest_S10_W009_Q08", + "S10-Quest:Quest_S10_W009_Q09", + "S10-Quest:Quest_S10_W009_Q10", + "S10-Quest:Quest_S10_W009_Q11", + "S10-Quest:Quest_S10_W009_Q12", + "S10-Quest:Quest_S10_W009_Q13", + "S10-Quest:Quest_S10_W009_Q14" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_S10_NightNight", + "templateId": "ChallengeBundle:QuestBundle_S10_NightNight", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_S10_NightNight_Interact" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_NightNight_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_S10_OT", + "templateId": "ChallengeBundle:QuestBundle_S10_OT", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_OT_q01a", + "S10-Quest:Quest_S10_OT_q02a", + "S10-Quest:Quest_S10_OT_q03a", + "S10-Quest:Quest_BR_S10_NightNight_Interact", + "S10-Quest:Quest_S10_OT_q05", + "S10-Quest:Quest_BR_S10_NightNight_Interact_02", + "S10-Quest:Quest_S10_OT_q07", + "S10-Quest:Quest_BR_S10_NightNight_Interact_03", + "S10-Quest:Quest_S10_OT_q09" + ], + "questStages": [ + "S10-Quest:Quest_S10_OT_q01b", + "S10-Quest:Quest_S10_OT_q02b", + "S10-Quest:Quest_S10_OT_q03b" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_OT_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_RustLord", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_RustRemix_01", + "S10-Quest:Quest_S10_Style_RustRemix_02", + "S10-Quest:Quest_S10_Style_RustRemix_03", + "S10-Quest:Quest_S10_Style_RustRemix_04", + "S10-Quest:Quest_S10_Style_RustRemix_05", + "S10-Quest:Quest_S10_Style_RustRemix_06", + "S10-Quest:Quest_S10_Style_RustRemix_07", + "S10-Quest:Quest_S10_Style_RustRemix_08", + "S10-Quest:Quest_S10_Style_RustRemix_09", + "S10-Quest:Quest_S10_Style_RustRemix_10" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_RustLord_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday", + "templateId": "ChallengeBundle:QuestBundle_Event_BlackMonday", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_BM_Damage_Boomerang", + "S10-Quest:Quest_BR_BM_Interact_Lamps", + "S10-Quest:Quest_BR_BM_Use_Grappler", + "S10-Quest:Quest_BR_BM_Interact_Bombs", + "S10-Quest:Quest_BR_BM_Damage_AfterUsing_Boomerang", + "S10-Quest:Quest_BR_BM_GrappleLampBoomerang_SingleMatch" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Schedule_Event_BlackMonday" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_Event_Oak", + "templateId": "ChallengeBundle:QuestBundle_Event_Oak", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_Oak_CollectCash", + "S10-Quest:Quest_BR_Oak_Eliminations", + "S10-Quest:Quest_BR_Oak_Search_Chests", + "S10-Quest:Quest_BR_Oak_FetchEye", + "S10-Quest:Quest_BR_Oak_GainShield", + "S10-Quest:Quest_BR_Oak_Search_Logos" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Schedule_Event_Oak" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_Mystery", + "templateId": "ChallengeBundle:MissionBundle_S10_Mystery", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_S10_Mystery_DestroyStructure_JunkRift", + "S10-Quest:Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone", + "S10-Quest:Quest_BR_S10_Mystery_Eliminations_RiftZone", + "S10-Quest:Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone", + "S10-Quest:Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift", + "S10-Quest:Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different", + "S10-Quest:Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Schedule_MysteryMission" + }, + { + "itemGuid": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel", + "templateId": "ChallengeBundle:MissionBundle_S10_SeasonLevel", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_01", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_02", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_03", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_04", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_05", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_06", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_07", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_08", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_09", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_10", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_11", + "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_12" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_SeasonLevel_Mission_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:QuestBundle_S10_SeasonX", + "templateId": "ChallengeBundle:QuestBundle_S10_SeasonX", + "grantedquestinstanceids": [ + "S10-Quest:Quest_BR_S10_SeasonX_Tier100", + "S10-Quest:Quest_BR_S10_SeasonX_SeasonLevel", + "S10-Quest:Quest_BR_S10_SeasonX_BPMissions", + "S10-Quest:Quest_BR_S10_SeasonX_PrestigeMissions", + "S10-Quest:Quest_BR_S10_SeasonX_Mystery" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_SeasonX_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_Sparkle", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_SparkleRemix_01", + "S10-Quest:Quest_S10_Style_SparkleRemix_02", + "S10-Quest:Quest_S10_Style_SparkleRemix_03", + "S10-Quest:Quest_S10_Style_SparkleRemix_04", + "S10-Quest:Quest_S10_Style_SparkleRemix_05", + "S10-Quest:Quest_S10_Style_SparkleRemix_06", + "S10-Quest:Quest_S10_Style_SparkleRemix_07", + "S10-Quest:Quest_S10_Style_SparkleRemix_08" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Sparkle_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_Teknique", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_GraffitiRemix_01", + "S10-Quest:Quest_S10_Style_GraffitiRemix_02", + "S10-Quest:Quest_S10_Style_GraffitiRemix_03", + "S10-Quest:Quest_S10_Style_GraffitiRemix_04", + "S10-Quest:Quest_S10_Style_GraffitiRemix_05", + "S10-Quest:Quest_S10_Style_GraffitiRemix_06", + "S10-Quest:Quest_S10_Style_GraffitiRemix_07" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Teknique_Schedule" + }, + { + "itemGuid": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager", + "templateId": "ChallengeBundle:UnlockPreviewBundle_S10_Voyager", + "grantedquestinstanceids": [ + "S10-Quest:Quest_S10_Style_VoyagerRemix_01", + "S10-Quest:Quest_S10_Style_VoyagerRemix_02", + "S10-Quest:Quest_S10_Style_VoyagerRemix_03", + "S10-Quest:Quest_S10_Style_VoyagerRemix_04", + "S10-Quest:Quest_S10_Style_VoyagerRemix_05", + "S10-Quest:Quest_S10_Style_VoyagerRemix_06", + "S10-Quest:Quest_S10_Style_VoyagerRemix_07" + ], + "challenge_bundle_schedule_id": "S10-ChallengeBundleSchedule:Season10_Voyager_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Below", + "templateId": "Quest:Quest_BR_Daily_Damage_Below", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Below", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Close", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Close", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Close", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_GainShield", + "templateId": "Quest:Quest_BR_Daily_Items_GainShield", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_GainShield", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_PlayFriend_Matches", + "templateId": "Quest:Quest_BR_Daily_PlayFriend_Matches", + "objectives": [ + { + "name": "Quest_BR_Daily_PlayFriend_Matches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_Dusty_Pleasant", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_Dusty_Pleasant", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_Dusty_Pleasant", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_UseVehicle_Mech", + "templateId": "Quest:Quest_BR_Daily_UseVehicle_Mech", + "objectives": [ + { + "name": "Quest_BR_Daily_UseVehicle_Mech", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week01" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Assault", + "templateId": "Quest:Quest_BR_Daily_Damage_Assault", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Assault", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_SupplyDrop", + "templateId": "Quest:Quest_BR_Daily_Damage_SupplyDrop", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_SupplyDrop", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Pistol", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Pistol", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Pistol", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_EachRarity", + "templateId": "Quest:Quest_BR_Daily_Items_EachRarity", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_EachRarity_0", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_EachRarity_1", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_EachRarity_2", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_EachRarity_3", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_EachRarity_4", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Tilted_Fatal", + "templateId": "Quest:Quest_BR_Daily_LandAt_Tilted_Fatal", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Tilted_Fatal", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Placement_SoloOrDuo_Top10", + "templateId": "Quest:Quest_BR_Daily_Placement_SoloOrDuo_Top10", + "objectives": [ + { + "name": "Quest_BR_Daily_Placement_SoloOrDuo_Top10", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk", + "templateId": "Quest:Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Explosive", + "templateId": "Quest:Quest_BR_Daily_Damage_Explosive", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Explosive", + "count": 250 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminate_Zombies", + "templateId": "Quest:Quest_BR_Daily_Eliminate_Zombies", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminate_Zombies", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Shotgun", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Shotgun", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Shotgun", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_UseThrown_DifferentMatches", + "templateId": "Quest:Quest_BR_Daily_Items_UseThrown_DifferentMatches", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_UseThrown_DifferentMatches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Outlast_DuoOrSquads", + "templateId": "Quest:Quest_BR_Daily_Outlast_DuoOrSquads", + "objectives": [ + { + "name": "Quest_BR_Daily_Outlast_DuoOrSquads", + "count": 150 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_Salty_Frosty", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_Salty_Frosty", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_Salty_Frosty", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Headshot", + "templateId": "Quest:Quest_BR_Daily_Damage_Headshot", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Headshot", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Structures", + "templateId": "Quest:Quest_BR_Daily_Damage_Structures", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Structures", + "count": 1000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Scoped", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Scoped", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Scoped", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_Consume_GlitchyForaged", + "templateId": "Quest:Quest_BR_Daily_Items_Consume_GlitchyForaged", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_Consume_GlitchyForaged", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Pressure_Happy", + "templateId": "Quest:Quest_BR_Daily_LandAt_Pressure_Happy", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Pressure_Happy", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Play_Arena", + "templateId": "Quest:Quest_BR_Daily_Play_Arena", + "objectives": [ + { + "name": "Quest_BR_Daily_Play_Arena", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_01", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_02", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_03", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_04", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_05", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_06", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_07", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_08", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_09", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_10", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_11", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_12", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_13", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_14", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_15", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_16", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_17", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_18", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_19", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_20", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch_21", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Above", + "templateId": "Quest:Quest_BR_Daily_Damage_Above", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Above", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Pickaxe", + "templateId": "Quest:Quest_BR_Daily_Damage_Pickaxe", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Pickaxe", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_FarAway", + "templateId": "Quest:Quest_BR_Daily_Eliminations_FarAway", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_FarAway", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_UseTrap_DifferentMatches", + "templateId": "Quest:Quest_BR_Daily_Items_UseTrap_DifferentMatches", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_UseTrap_DifferentMatches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Placement_DuoOrSquad_Top5", + "templateId": "Quest:Quest_BR_Daily_Placement_DuoOrSquad_Top5", + "objectives": [ + { + "name": "Quest_BR_Daily_Placement_DuoOrSquad_Top5", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_Shifty_Haunted", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_Shifty_Haunted", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_Shifty_Haunted", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week05" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Scoped", + "templateId": "Quest:Quest_BR_Daily_Damage_Scoped", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Scoped", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Sniper", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Sniper", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch", + "templateId": "Quest:Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_01", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_02", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_03", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_04", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_05", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_06", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Meteor_Island", + "templateId": "Quest:Quest_BR_Daily_LandAt_Meteor_Island", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Meteor_Island_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_LandAt_Meteor_Island_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Outlast_SoloOrDuo", + "templateId": "Quest:Quest_BR_Daily_Outlast_SoloOrDuo", + "objectives": [ + { + "name": "Quest_BR_Daily_Outlast_SoloOrDuo", + "count": 150 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely", + "templateId": "Quest:Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week06" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Pistol", + "templateId": "Quest:Quest_BR_Daily_Damage_Pistol", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Pistol", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Shotgun", + "templateId": "Quest:Quest_BR_Daily_Damage_Shotgun", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Shotgun", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Explosive", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Explosive", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Explosive", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_UseDifferentTrap", + "templateId": "Quest:Quest_BR_Daily_Items_UseDifferentTrap", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_UseDifferentTrap_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentTrap_01", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentTrap_02", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Items_UseDifferentTrap_03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Frosty_Haunted", + "templateId": "Quest:Quest_BR_Daily_LandAt_Frosty_Haunted", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Frosty_Haunted", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_ChestAmmoVending_SameMatch", + "templateId": "Quest:Quest_BR_Daily_Search_ChestAmmoVending_SameMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_ChestAmmoVending_SameMatch_0", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_ChestAmmoVending_SameMatch_1", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_ChestAmmoVending_SameMatch_2", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_Greasy_Sunny", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_Greasy_Sunny", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_Greasy_Sunny", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week07" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_SingleMatch", + "templateId": "Quest:Quest_BR_Daily_Damage_SingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_SingleMatch", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_SMG", + "templateId": "Quest:Quest_BR_Daily_Damage_SMG", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_SMG", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Suppressed", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Suppressed", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Suppressed", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Salty_Junk", + "templateId": "Quest:Quest_BR_Daily_LandAt_Salty_Junk", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Salty_Junk", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch", + "templateId": "Quest:Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_01", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_02", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_03", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_04", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_05", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_06", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_07", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_08", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_09", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_10", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_11", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_12", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_13", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_14", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_15", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_16", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_17", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_18", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_19", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_20", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_21", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch_22", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_HotSpot", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_HotSpot", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_HotSpot", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Retail_Block", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Retail_Block", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Retail_Block_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Retail_Block_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week08" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Sniper", + "templateId": "Quest:Quest_BR_Daily_Damage_Sniper", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_SMG", + "templateId": "Quest:Quest_BR_Daily_Eliminations_SMG", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_SMG", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Items_GainHealth", + "templateId": "Quest:Quest_BR_Daily_Items_GainHealth", + "objectives": [ + { + "name": "Quest_BR_Daily_Items_GainHealth", + "count": 250 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Polar_Moisty", + "templateId": "Quest:Quest_BR_Daily_LandAt_Polar_Moisty", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Polar_Moisty", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_SingleMatch", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_SingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_SingleMatch", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_SupplyDrops", + "templateId": "Quest:Quest_BR_Daily_Search_SupplyDrops", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_SupplyDrops", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant", + "templateId": "Quest:Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Damage_Suppressed", + "templateId": "Quest:Quest_BR_Daily_Damage_Suppressed", + "objectives": [ + { + "name": "Quest_BR_Daily_Damage_Suppressed", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Eliminations_Assault", + "templateId": "Quest:Quest_BR_Daily_Eliminations_Assault", + "objectives": [ + { + "name": "Quest_BR_Daily_Eliminations_Assault", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_LandAt_Lucky_Retail", + "templateId": "Quest:Quest_BR_Daily_LandAt_Lucky_Retail", + "objectives": [ + { + "name": "Quest_BR_Daily_LandAt_Lucky_Retail", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Outlast_SoloOrSquad", + "templateId": "Quest:Quest_BR_Daily_Outlast_SoloOrSquad", + "objectives": [ + { + "name": "Quest_BR_Daily_Outlast_SoloOrSquad", + "count": 150 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_AmmoBoxes_SingleMatch", + "templateId": "Quest:Quest_BR_Daily_Search_AmmoBoxes_SingleMatch", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_AmmoBoxes_SingleMatch", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Search_Chests_Loot_Happy", + "templateId": "Quest:Quest_BR_Daily_Search_Chests_Loot_Happy", + "objectives": [ + { + "name": "Quest_BR_Daily_Search_Chests_Loot_Happy", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Daily_Visit_DifferentLocations", + "templateId": "Quest:Quest_BR_Daily_Visit_DifferentLocations", + "objectives": [ + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_00", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_01", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_02", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_03", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_04", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_05", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_06", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_07", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_08", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_09", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_10", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_11", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_12", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_13", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_14", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_15", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_16", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_17", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_18", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_19", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_20", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_21", + "count": 1 + }, + { + "name": "Quest_BR_Daily_Visit_DifferentLocations_22", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_BR_S10_Daily_Week10" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_01", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_01", + "objectives": [ + { + "name": "s10_style_blackknightremix_01", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_02", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_02", + "objectives": [ + { + "name": "s10_style_blackknightremix_02", + "count": 22 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_03", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_03", + "objectives": [ + { + "name": "s10_style_blackknightremix_03", + "count": 95 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_04", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_04", + "objectives": [ + { + "name": "s10_style_blackknightremix_04", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_05", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_05", + "objectives": [ + { + "name": "s10_style_blackknightremix_05", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_06", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_06", + "objectives": [ + { + "name": "s10_style_blackknightremix_06", + "count": 65 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_07", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_07", + "objectives": [ + { + "name": "s10_style_blackknightremix_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_BlackKnightRemix_08", + "templateId": "Quest:Quest_S10_Style_BlackKnightRemix_08", + "objectives": [ + { + "name": "s10_style_blackknightremix_08", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_BlackKnight" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_01", + "templateId": "Quest:Quest_S10_Style_DJRemix_01", + "objectives": [ + { + "name": "s10_style_djremix_01", + "count": 35 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_02", + "templateId": "Quest:Quest_S10_Style_DJRemix_02", + "objectives": [ + { + "name": "s10_style_djremix_02", + "count": 39 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_03", + "templateId": "Quest:Quest_S10_Style_DJRemix_03", + "objectives": [ + { + "name": "s10_style_djremix_03", + "count": 43 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_04", + "templateId": "Quest:Quest_S10_Style_DJRemix_04", + "objectives": [ + { + "name": "s10_style_djremix_04", + "count": 47 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_05", + "templateId": "Quest:Quest_S10_Style_DJRemix_05", + "objectives": [ + { + "name": "s10_style_djremix_05", + "count": 54 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_06", + "templateId": "Quest:Quest_S10_Style_DJRemix_06", + "objectives": [ + { + "name": "s10_style_djremix_06", + "count": 99 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_07", + "templateId": "Quest:Quest_S10_Style_DJRemix_07", + "objectives": [ + { + "name": "s10_style_djremix_07", + "count": 40 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_08", + "templateId": "Quest:Quest_S10_Style_DJRemix_08", + "objectives": [ + { + "name": "s10_style_djremix_08", + "count": 40 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_09", + "templateId": "Quest:Quest_S10_Style_DJRemix_09", + "objectives": [ + { + "name": "s10_style_djremix_09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_DJRemix_10", + "templateId": "Quest:Quest_S10_Style_DJRemix_10", + "objectives": [ + { + "name": "s10_style_djremix_10", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_DJYonger" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_01", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_01", + "objectives": [ + { + "name": "s10_style_streetracerdrift_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_02", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_02", + "objectives": [ + { + "name": "s10_style_streetracerdrift_02", + "count": 21 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_03", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_03", + "objectives": [ + { + "name": "s10_style_streetracerdrift_03", + "count": 97 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_04", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_04", + "objectives": [ + { + "name": "s10_style_streetracerdrift_04", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_05", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_05", + "objectives": [ + { + "name": "s10_style_streetracerdrift_05", + "count": 30 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_06", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_06", + "objectives": [ + { + "name": "s10_style_streetracerdrift_06", + "count": 55 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_07", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_07", + "objectives": [ + { + "name": "s10_style_streetracerdrift_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_08", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_08", + "objectives": [ + { + "name": "s10_style_streetracerdrift_08", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_09", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_09", + "objectives": [ + { + "name": "s10_style_streetracerdrift_09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_StreetRacerDrift_10", + "templateId": "Quest:Quest_S10_Style_StreetRacerDrift_10", + "objectives": [ + { + "name": "s10_style_streetracerdrift_10", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Drift" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Passenger_Vehicle", + "templateId": "Quest:Quest_BR_Damage_Passenger_Vehicle", + "objectives": [ + { + "name": "battlepass_damage_athena_player_passenger_vehicle", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Zipline_Prestige", + "templateId": "Quest:Quest_BR_Damage_Zipline_Prestige", + "objectives": [ + { + "name": "battlepass_damage_athena_player_zipline_while_riding_prestige", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Destroy_Sign_SingleMatch_WearingDrift_Prestige", + "templateId": "Quest:Quest_BR_Destroy_Sign_SingleMatch_WearingDrift_Prestige", + "objectives": [ + { + "name": "battlepass_destroy_athena_sign_singlematch_wearingdrift", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Destroy_Sign_WearingDrift", + "templateId": "Quest:Quest_BR_Destroy_Sign_WearingDrift", + "objectives": [ + { + "name": "battlepass_destroy_athena_sign_wearingdrift", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_Different_Named_Locations_Prestige", + "templateId": "Quest:Quest_BR_Eliminate_Different_Named_Locations_Prestige", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_different_junkjunction_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_hauntedhills_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pleasantpark_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lootlake_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylinks_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tomatotemple_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_riskyreels_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_wailingwoods_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_snobbyshores_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_greasygrove_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_tiltedtowers_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_shiftyshafts_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydivot_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_saltysprings_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_retailrow_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lonelylodge_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_flushfactory_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_luckylanding_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_fatalfields_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_paradisepalms_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_polarpeak_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_frostyflights_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_theblock_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_happyhamlet_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_lazylagoon_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_pressureplant_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_sunnysteps_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_dustydepot_prestige", + "count": 1 + }, + { + "name": "battlepass_killingblow_athena_player_different_starrysuburb_prestige", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_Passenger_Vehicle_Prestige", + "templateId": "Quest:Quest_BR_Eliminate_Passenger_Vehicle_Prestige", + "objectives": [ + { + "name": "battlepass_eliminate_athena_player_passenger_vehicle_prestige", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Interact_Chests_Locations_Different", + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different", + "objectives": [ + { + "name": "battlepass_interact_chest_athena_location_different_lazylinks", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_dustydivot", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_fatalfields", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_flushfactory", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_greasygrove", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_hauntedhills", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_junkjunction", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_luckylanding", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lonelylodge", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_lootlake", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_paradisepalms", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_pleasantpark", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_retailrow", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_shiftyshafts", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_saltysprings", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_snobbyshores", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tiltedtowers", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_tomatotemple", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_wailingwoods", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_riskyreels", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_polarpeak", + "count": 1 + }, + { + "name": "battlepass_interact_chest_athena_location_different_frostyflights", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_happyhamlet", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_lazylagoon", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_pressureplant", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_theblock_prestige", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_sunnysteps", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_dustydepot", + "count": 1 + }, + { + "name": "interact_athena_treasurechest_starrysuburb", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_TrickPoint_Vehicle", + "templateId": "Quest:Quest_BR_TrickPoint_Vehicle", + "objectives": [ + { + "name": "battlepass_score_athena_trick_point_vehicle", + "count": 250000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_TrickPoint_Vehicle_Prestige", + "templateId": "Quest:Quest_BR_TrickPoint_Vehicle_Prestige", + "objectives": [ + { + "name": "battlepass_score_athena_trick_point_vehicle_prestige", + "count": 500000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Use_Zipline_DifferentMatches", + "templateId": "Quest:Quest_BR_Use_Zipline_DifferentMatches", + "objectives": [ + { + "name": "battlepass_use_item_zipline", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Visit_DurrrStoneheadDino", + "templateId": "Quest:Quest_BR_Visit_DurrrStoneheadDino", + "objectives": [ + { + "name": "battlepass_visit_athena_durrrburgerhead_mountaintop", + "count": 1 + }, + { + "name": "battlepass_visit_athena_stonehead", + "count": 1 + }, + { + "name": "battlepass_visit_athena_dinosaur", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Visit_DurrrStoneheadDino_Prestige", + "templateId": "Quest:Quest_BR_Visit_DurrrStoneheadDino_Prestige", + "objectives": [ + { + "name": "battlepass_visit_athena_durrrburgerhead_mountaintop_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_stonehead_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_dinosaur_prestige", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Visit_LazylagoonLuckylanding_SingleMatch", + "templateId": "Quest:Quest_BR_Visit_LazylagoonLuckylanding_SingleMatch", + "objectives": [ + { + "name": "battlepass_visit_athena_lazylagoon_singlematch", + "count": 1 + }, + { + "name": "battlepass_visit_athena_luckylanding_singlematch", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Visit_NamedLocations_SingleMatch_Prestige", + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch_Prestige", + "objectives": [ + { + "name": "battlepass_visit_athena_location_dustydivot_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_fatalfields_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_frostyflights_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_happyhamlet_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_hauntedhills_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_junkjunction_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lazylagoon_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lonelylodge_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_lootlake_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_luckylanding_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_paradisepalms_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pleasantpark_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_polarpeak_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_pressureplant_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_retailrow_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_saltysprings_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_shiftyshafts_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_snobbyshores_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_sunnysteps_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_theblock_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_tiltedtowers_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_dustydepot_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_greasygrove_prestige", + "count": 1 + }, + { + "name": "battlepass_visit_athena_location_starrysuburb_prestige", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01A" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Assist_Teammates_SingleMatch_TeamRumble", + "templateId": "Quest:Quest_BR_Assist_Teammates_SingleMatch_TeamRumble", + "objectives": [ + { + "name": "battlepass_athena_assist_teammates_teamrumble", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Assist_Teammates_TeamRumble", + "templateId": "Quest:Quest_BR_Assist_Teammates_TeamRumble", + "objectives": [ + { + "name": "battlepass_athena_assist_teammates_teamrumble", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Build_Structures_TeamRumble_RustLord", + "templateId": "Quest:Quest_BR_Build_Structures_TeamRumble_RustLord", + "objectives": [ + { + "name": "battlepass_build_athena_structures_any_teamrumble_rustlord", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Headshot_TeamRumble", + "templateId": "Quest:Quest_BR_Damage_Headshot_TeamRumble", + "objectives": [ + { + "name": "battlepass_damage_headshot_teamrumble", + "count": 1000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Opponents_SingleMatch_TeamRumble", + "templateId": "Quest:Quest_BR_Damage_Opponents_SingleMatch_TeamRumble", + "objectives": [ + { + "name": "battlepass_eliminate_players_different_match_teamrumble", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_UniqueOpponents_TeamRumble", + "templateId": "Quest:Quest_BR_Damage_UniqueOpponents_TeamRumble", + "objectives": [ + { + "name": "battlepass_damage_unique_opponents_teamrumble", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_100m_TeamRumble", + "templateId": "Quest:Quest_BR_Eliminate_100m_TeamRumble", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_greaterthan100m_distance_teamrumble", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_5m_TeamRumble", + "templateId": "Quest:Quest_BR_Eliminate_5m_TeamRumble", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_lessthan5m_distance_teamrumble", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminations_TeamRumble_SingleMatch", + "templateId": "Quest:Quest_BR_Eliminations_TeamRumble_SingleMatch", + "objectives": [ + { + "name": "battlepass_eliminate_players_singlematch_teamrumble", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Interact_Chests_TeamRumble_RustLord", + "templateId": "Quest:Quest_BR_Interact_Chests_TeamRumble_RustLord", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_teamrumble_rustlord", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_PlayMatches_MinimumOneElim_TeamRumble", + "templateId": "Quest:Quest_BR_PlayMatches_MinimumOneElim_TeamRumble", + "objectives": [ + { + "name": "battlepass_eliminate_minimum_oneopponent_teamrumble", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_SupplyDrops_SingleMatch_TeamRumble", + "templateId": "Quest:Quest_BR_Search_SupplyDrops_SingleMatch_TeamRumble", + "objectives": [ + { + "name": "battlepass_athena_search_supplydrops_singlematch_teamrumble", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_SupplyDrops_TeamRumble", + "templateId": "Quest:Quest_BR_Search_SupplyDrops_TeamRumble", + "objectives": [ + { + "name": "battlepass_athena_search_supplydrops_teamrumble", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_WinMatches_TeamRumble", + "templateId": "Quest:Quest_BR_WinMatches_TeamRumble", + "objectives": [ + { + "name": "battlepass_athena_win_match_teamrumble", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_01B" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Minigun_Prestige", + "templateId": "Quest:Quest_BR_Damage_Minigun_Prestige", + "objectives": [ + { + "name": "battlepass_damage_athena_player_minigun_prestige", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_SMG", + "templateId": "Quest:Quest_BR_Damage_SMG", + "objectives": [ + { + "name": "battlepass_damage_athena_player_smg", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_Structure_Minigun", + "templateId": "Quest:Quest_BR_Damage_Structure_Minigun", + "objectives": [ + { + "name": "battlepass_damage_athena_player_walls_minigun", + "count": 3000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_15m_SMG", + "templateId": "Quest:Quest_BR_Eliminate_15m_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_15m_distance_smg", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_5m_SMG", + "templateId": "Quest:Quest_BR_Eliminate_5m_SMG", + "objectives": [ + { + "name": "battlepass_killingblow_athena_players_5m_distance_smg", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_Location_TiltedTowers_Graffitiremix", + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers_Graffitiremix", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_tiltedtowers_graffitiremix", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_Weapon_SMG_SingleMatch", + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG_SingleMatch", + "objectives": [ + { + "name": "battlepass_killingblow_athena_player_smg_singlematch", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Interact_Chests_Location_TiltedTowers", + "templateId": "Quest:Quest_BR_Interact_Chests_Location_TiltedTowers", + "objectives": [ + { + "name": "battlepass_interact_athena_treasurechest_tiltedtowers", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Interact_Chests_WindowedContainers", + "templateId": "Quest:Quest_BR_Interact_Chests_WindowedContainers", + "objectives": [ + { + "name": "battlepass_interact_athena_chests_inside_windowed_containers", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Interact_Spraycans", + "templateId": "Quest:Quest_BR_Interact_Spraycans", + "objectives": [ + { + "name": "battlepass_interact_spraycan_00", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_01", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_02", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_03", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_04", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_05", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_06", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_07", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_08", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_09", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_10", + "count": 1 + }, + { + "name": "battlepass_interact_spraycan_11", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_SprayVehicles_DifferentLocation", + "templateId": "Quest:Quest_BR_SprayVehicles_DifferentLocation", + "objectives": [ + { + "name": "battlepass_spray_car_or_truck_1", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_2", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_3", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_4", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_5", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_6", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_7", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_8", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_9", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_10", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_11", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_12", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_13", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_14", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_15", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_16", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_17", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_18", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_19", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_20", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_21", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_23", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_24", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_25", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_26", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_27", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_28", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_29", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_30", + "count": 1 + }, + { + "name": "battlepass_spray_car_or_truck_31", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Spray_Fountain_JunkyardCrane_VendingMachine", + "templateId": "Quest:Quest_BR_Spray_Fountain_JunkyardCrane_VendingMachine", + "objectives": [ + { + "name": "battlepass_spray_athena_junkyardcrane", + "count": 1 + }, + { + "name": "battlepass_spray_athena_fountain", + "count": 1 + }, + { + "name": "battlepass_spray_athena_vendingmachine", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Spray_GasStations_Different", + "templateId": "Quest:Quest_BR_Spray_GasStations_Different", + "objectives": [ + { + "name": "battlepass_spray_athena_location_gas_station_01", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_02", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_03", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_04", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_05", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_06", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_07", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_08", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_09", + "count": 1 + }, + { + "name": "battlepass_spray_athena_location_gas_station_10", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Visit_GraffitiBillboards", + "templateId": "Quest:Quest_BR_Visit_GraffitiBillboards", + "objectives": [ + { + "name": "battlepass_visit_athena_graffitibillboard_01", + "count": 1 + }, + { + "name": "battlepass_visit_athena_graffitibillboard_02", + "count": 1 + }, + { + "name": "battlepass_visit_athena_graffitibillboard_03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_02" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_001", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_001", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M01_O01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_002", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_002", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M02_O01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_003", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_003", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M03_O01", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_004", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_004", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M04_O01", + "count": 1 + }, + { + "name": "athena_mission_worldscollide_S10_M04_O02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_005", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_005", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M05_O01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_006", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_006", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M06_O01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_007", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_007", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M07_O01", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_008", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_008", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M08_O01", + "count": 4 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_009", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_009", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M09_O01", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_010", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_010", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M10_O01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_011", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_011", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M11_O01", + "count": 1 + }, + { + "name": "athena_mission_worldscollide_S10_M11_O02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_012", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_012", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M12_O01", + "count": 4 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_013", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_013", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M13_O01", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_WorldsCollide_014", + "templateId": "Quest:Quest_BR_S10_WorldsCollide_014", + "objectives": [ + { + "name": "athena_mission_worldscollide_S10_M14_O01", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_03" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Collect_Legendary", + "templateId": "Quest:Quest_BR_Collect_Legendary", + "objectives": [ + { + "name": "br_collect_5_legendary", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_DamageOpponents_HotSpot", + "templateId": "Quest:Quest_BR_DamageOpponents_HotSpot", + "objectives": [ + { + "name": "br_damage_athena_player_hotspot", + "count": 200 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Damage_AfterLaunchpad", + "templateId": "Quest:Quest_BR_Damage_AfterLaunchpad", + "objectives": [ + { + "name": "br_damage_afterlaunchpad", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Destroy_SuperDingo_AfterJumping", + "templateId": "Quest:Quest_BR_Destroy_SuperDingo_AfterJumping", + "objectives": [ + { + "name": "br_destroy_superdingo_afterjumping", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_AfterLaunchpad", + "templateId": "Quest:Quest_BR_Eliminate_AfterLaunchpad", + "objectives": [ + { + "name": "br_eliminate_afterlaunchpad", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Eliminate_HotSpot", + "templateId": "Quest:Quest_BR_Eliminate_HotSpot", + "objectives": [ + { + "name": "br_eliminate_hotspot", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Harvest_AfterJumping", + "templateId": "Quest:Quest_BR_Harvest_AfterJumping", + "objectives": [ + { + "name": "br_harvest_afterjumping_wood", + "count": 100 + }, + { + "name": "br_harvest_afterjumping_stone", + "count": 100 + }, + { + "name": "br_harvest_afterjumping_metal", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Land_HotSpot", + "templateId": "Quest:Quest_BR_Land_HotSpot", + "objectives": [ + { + "name": "br_land_hotspot", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Loot_Legendary", + "templateId": "Quest:Quest_BR_Loot_Legendary", + "objectives": [ + { + "name": "br_loot_legendary", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_AfterLanding", + "templateId": "Quest:Quest_BR_Search_AfterLanding", + "objectives": [ + { + "name": "br_search_afterlanding", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_ChestAmmo_AfterJumping", + "templateId": "Quest:Quest_BR_Search_ChestAmmo_AfterJumping", + "objectives": [ + { + "name": "br_search_chestammo_afterjumping", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_SupplyDrop_AfterLanding", + "templateId": "Quest:Quest_BR_Search_SupplyDrop_AfterLanding", + "objectives": [ + { + "name": "br_search_supplydrop_afterlanding", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_WithinTimer_01", + "templateId": "Quest:Quest_BR_Search_WithinTimer_01", + "objectives": [ + { + "name": "br_search_withintimer_01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Search_WithinTimer_02", + "templateId": "Quest:Quest_BR_Search_WithinTimer_02", + "objectives": [ + { + "name": "br_search_withintimer_02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_04" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q01", + "templateId": "Quest:Quest_S10_W05_Q01", + "objectives": [ + { + "name": "Objective_S10_W05_Q01_O01_LandDustyVisitMeteor_LandDusty", + "count": 1 + }, + { + "name": "Objective_S10_W05_Q01_O02_LandDustyVisitMeteor_VisitMeteor", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q02", + "templateId": "Quest:Quest_S10_W05_Q02", + "objectives": [ + { + "name": "Objective_S10_W05_Q02_O01_HarvestMaterialsBlock", + "count": 300 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q03", + "templateId": "Quest:Quest_S10_W05_Q03", + "objectives": [ + { + "name": "Objective_S10_W05_Q03__O01_LandHeroVillain_Hero", + "count": 1 + }, + { + "name": "Objective_S10_W05_Q03__O02_LandHeroVillain_Villain", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q04", + "templateId": "Quest:Quest_S10_W05_Q04", + "objectives": [ + { + "name": "Objective_S10_W05_Q04_O01_DamageLowGravity", + "count": 250 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q05", + "templateId": "Quest:Quest_S10_W05_Q05", + "objectives": [ + { + "name": "Objective_S10_W05_Q05_O01_SearchCameraStoneHeadBigRig", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q06", + "templateId": "Quest:Quest_S10_W05_Q06", + "objectives": [ + { + "name": "Objective_S10_W05_Q06_O01_ConsumeForagedItems", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q07", + "templateId": "Quest:Quest_S10_W05_Q07", + "objectives": [ + { + "name": "Objective_S10_W05_Q07_O01_SearchVendingMachines", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q08", + "templateId": "Quest:Quest_S10_W05_Q08", + "objectives": [ + { + "name": "Objective_S10_W05_Q08_O01_EliminationsDustyOrMeteor", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q09", + "templateId": "Quest:Quest_S10_W05_Q09", + "objectives": [ + { + "name": "Objective_S10_W05_Q09_O01_SearchChestsOrAmmoBoxesBlock", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q10", + "templateId": "Quest:Quest_S10_W05_Q10", + "objectives": [ + { + "name": "Objective_S10_W05_Q10_O01_SearchChestsMansionOrLair", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q11", + "templateId": "Quest:Quest_S10_W05_Q11", + "objectives": [ + { + "name": "Objective_S10_W05_Q11_O01_DamageExplosiveWeapons", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q12", + "templateId": "Quest:Quest_S10_W05_Q12", + "objectives": [ + { + "name": "Objective_S10_W05_Q12_O01_SearchBattleStarPhoneForkKnifePosters", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q13", + "templateId": "Quest:Quest_S10_W05_Q13", + "objectives": [ + { + "name": "Objective_S10_W05_Q13_O01_ConsumeForagedItemsSingleMatch", + "count": 8 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W05_Q14", + "templateId": "Quest:Quest_S10_W05_Q14", + "objectives": [ + { + "name": "Objective_S10_W05_Q14_O01_HarvestBlockDustySingleMatch", + "count": 300 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_05" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q01", + "templateId": "Quest:Quest_S10_W006_Q01", + "objectives": [ + { + "name": "questobj_s10_w006_q01_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q02", + "templateId": "Quest:Quest_S10_W006_Q02", + "objectives": [ + { + "name": "questobj_s10_w006_q02_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w006_q02_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w006_q02_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q03", + "templateId": "Quest:Quest_S10_W006_Q03", + "objectives": [ + { + "name": "questobj_s10_w006_q03_obj01", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q04", + "templateId": "Quest:Quest_S10_W006_Q04", + "objectives": [ + { + "name": "questobj_s10_w006_q04_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q05", + "templateId": "Quest:Quest_S10_W006_Q05", + "objectives": [ + { + "name": "questobj_s10_w006_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w006_q05_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w006_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q06", + "templateId": "Quest:Quest_S10_W006_Q06", + "objectives": [ + { + "name": "questobj_s10_w006_q06_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q07", + "templateId": "Quest:Quest_S10_W006_Q07", + "objectives": [ + { + "name": "questobj_s10_w006_q07_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q08", + "templateId": "Quest:Quest_S10_W006_Q08", + "objectives": [ + { + "name": "questobj_s10_w006_q08_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q09", + "templateId": "Quest:Quest_S10_W006_Q09", + "objectives": [ + { + "name": "questobj_s10_w006_q09_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w006_q09_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w006_q09_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q10", + "templateId": "Quest:Quest_S10_W006_Q10", + "objectives": [ + { + "name": "questobj_s10_w006_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w006_q10_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w006_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q11", + "templateId": "Quest:Quest_S10_W006_Q11", + "objectives": [ + { + "name": "questobj_s10_w006_q11_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q12", + "templateId": "Quest:Quest_S10_W006_Q12", + "objectives": [ + { + "name": "questobj_s10_w006_q12_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q13", + "templateId": "Quest:Quest_S10_W006_Q13", + "objectives": [ + { + "name": "questobj_s10_w006_q13_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W006_Q14", + "templateId": "Quest:Quest_S10_W006_Q14", + "objectives": [ + { + "name": "questobj_s10_w006_q14_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_06" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q01", + "templateId": "Quest:quest_s10_w07_q01", + "objectives": [ + { + "name": "Objective_S10_W07_Q01_MatchesFriend", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q02", + "templateId": "Quest:quest_s10_w07_q02", + "objectives": [ + { + "name": "Objective_S10_W07_Q02_AssistEliminations", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q03", + "templateId": "Quest:quest_s10_w07_q03", + "objectives": [ + { + "name": "Objective_S10_W07_Q03_PetPet", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q04", + "templateId": "Quest:quest_s10_w07_q04", + "objectives": [ + { + "name": "Objective_S10_W07_Q04_HealTeammateChugSplashDifferentMatches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q05", + "templateId": "Quest:quest_s10_w07_q05", + "objectives": [ + { + "name": "Objective_S10_W07_Q05_O01_MarkItemsRarity_Uncommon", + "count": 1 + }, + { + "name": "Objective_S10_W07_Q05_O02_MarkItemsRarity_Rare", + "count": 1 + }, + { + "name": "Objective_S10_W07_Q05_O03_MarkItemsRarity_VeryRare", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q06", + "templateId": "Quest:quest_s10_w07_q06", + "objectives": [ + { + "name": "Objective_S10_W07_Q06_SquadDamage", + "count": 1000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q07", + "templateId": "Quest:quest_s10_w07_q07", + "objectives": [ + { + "name": "Objective_S10_W07_Q07_ReviveTeammateDifferentMatches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q08", + "templateId": "Quest:quest_s10_w07_q08", + "objectives": [ + { + "name": "Objective_S10_W07_Q08_Top20Friend", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q09", + "templateId": "Quest:quest_s10_w07_q09", + "objectives": [ + { + "name": "Objective_S10_W07_Q09_AssistEliminationsSingleMatch", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q10", + "templateId": "Quest:quest_s10_w07_q10", + "objectives": [ + { + "name": "Objective_S10_W07_Q10_UseLaunchpadSquadsDuos", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q11", + "templateId": "Quest:quest_s10_w07_q11", + "objectives": [ + { + "name": "Objective_S10_W07_Q11_HealTeammateCozyCampfireDifferentMatches", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q12", + "templateId": "Quest:quest_s10_w07_q12", + "objectives": [ + { + "name": "Objective_S10_W07_Q12_O01_MarkChestShieldHeal_Chest", + "count": 1 + }, + { + "name": "Objective_S10_W07_Q12_O02_MarkChestShieldHeal_Shield", + "count": 1 + }, + { + "name": "Objective_S10_W07_Q12_O03_MarkChestShieldHeal_Heal", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q13", + "templateId": "Quest:quest_s10_w07_q13", + "objectives": [ + { + "name": "Objective_S10_W07_Q13_SquadDamageSingleMatch", + "count": 1000 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:quest_s10_w07_q14", + "templateId": "Quest:quest_s10_w07_q14", + "objectives": [ + { + "name": "Objective_S10_W07_Q14_RebootTeammate", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_07" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q01", + "templateId": "Quest:Quest_S10_W008_Q01", + "objectives": [ + { + "name": "questobj_s10_w008_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q02", + "templateId": "Quest:Quest_S10_W008_Q02", + "objectives": [ + { + "name": "questobj_s10_w008_q02_obj01", + "count": 1 + }, + { + "name": "complete_athena_racetrack_grassland", + "count": 1 + }, + { + "name": "questobj_s10_w008_q02_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q03", + "templateId": "Quest:Quest_S10_W008_Q03", + "objectives": [ + { + "name": "questobj_s10_w008_q03_obj01", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q04", + "templateId": "Quest:Quest_S10_W008_Q04", + "objectives": [ + { + "name": "questobj_s10_w008_q04_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q05", + "templateId": "Quest:Quest_S10_W008_Q05", + "objectives": [ + { + "name": "questobj_s10_w008_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w008_q05_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w008_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q06", + "templateId": "Quest:Quest_S10_W008_Q06", + "objectives": [ + { + "name": "questobj_s10_w008_q06_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w008_q06_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q07", + "templateId": "Quest:Quest_S10_W008_Q07", + "objectives": [ + { + "name": "questobj_s10_w008_q07_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj03", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj04", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj05", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj06", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj07", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj08", + "count": 1 + }, + { + "name": "questobj_s10_w008_q07_obj09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q08", + "templateId": "Quest:Quest_S10_W008_Q08", + "objectives": [ + { + "name": "questobj_s10_w008_q08_obj01", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q09", + "templateId": "Quest:Quest_S10_W008_Q09", + "objectives": [ + { + "name": "questobj_s10_w008_q09_obj01", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q10", + "templateId": "Quest:Quest_S10_W008_Q10", + "objectives": [ + { + "name": "questobj_s10_w008_q10_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q11", + "templateId": "Quest:Quest_S10_W008_Q11", + "objectives": [ + { + "name": "questobj_s10_w008_q11_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q12", + "templateId": "Quest:Quest_S10_W008_Q12", + "objectives": [ + { + "name": "questobj_s10_w008_q12_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q13", + "templateId": "Quest:Quest_S10_W008_Q13", + "objectives": [ + { + "name": "questobj_s10_w008_q13_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w008_q13_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W008_Q14", + "templateId": "Quest:Quest_S10_W008_Q14", + "objectives": [ + { + "name": "questobj_s10_w008_q14_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj03", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj04", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj05", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj06", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj07", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj08", + "count": 1 + }, + { + "name": "questobj_s10_w008_q14_obj09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_08" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q01", + "templateId": "Quest:Quest_S10_W009_Q01", + "objectives": [ + { + "name": "questobj_s10_w009_q01_obj01", + "count": 1 + }, + { + "name": "questobj_s10_w009_q01_obj02", + "count": 1 + }, + { + "name": "questobj_s10_w009_q01_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q02", + "templateId": "Quest:Quest_S10_W009_Q02", + "objectives": [ + { + "name": "questobj_s10_w009_q02_obj01", + "count": 50 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q03", + "templateId": "Quest:Quest_S10_W009_Q03", + "objectives": [ + { + "name": "questobj_s10_w009_q03_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q04", + "templateId": "Quest:Quest_S10_W009_Q04", + "objectives": [ + { + "name": "questobj_s10_w009_q04_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q05", + "templateId": "Quest:Quest_S10_W009_Q05", + "objectives": [ + { + "name": "questobj_s10_w009_q05_obj01", + "count": 4 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q06", + "templateId": "Quest:Quest_S10_W009_Q06", + "objectives": [ + { + "name": "questobj_s10_w009_q06_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q07", + "templateId": "Quest:Quest_S10_W009_Q07", + "objectives": [ + { + "name": "questobj_s10_w009_q07_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q08", + "templateId": "Quest:Quest_S10_W009_Q08", + "objectives": [ + { + "name": "questobj_s10_w009_q08_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q09", + "templateId": "Quest:Quest_S10_W009_Q09", + "objectives": [ + { + "name": "questobj_s10_w009_q09_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q10", + "templateId": "Quest:Quest_S10_W009_Q10", + "objectives": [ + { + "name": "questobj_s10_w009_q10_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q11", + "templateId": "Quest:Quest_S10_W009_Q11", + "objectives": [ + { + "name": "questobj_s10_w009_q11_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q12", + "templateId": "Quest:Quest_S10_W009_Q12", + "objectives": [ + { + "name": "questobj_s10_w009_q12_obj01", + "count": 4 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q13", + "templateId": "Quest:Quest_S10_W009_Q13", + "objectives": [ + { + "name": "questobj_s10_w009_q13_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_S10_W009_Q14", + "templateId": "Quest:Quest_S10_W009_Q14", + "objectives": [ + { + "name": "questobj_s10_w009_q14_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_09" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_NightNight_Interact", + "templateId": "Quest:Quest_BR_S10_NightNight_Interact", + "objectives": [ + { + "name": "interact_nightnight_00", + "count": 1 + }, + { + "name": "interact_nightnight_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_NightNight" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_NightNight_Interact", + "templateId": "Quest:Quest_BR_S10_NightNight_Interact", + "objectives": [ + { + "name": "interact_nightnight_00", + "count": 1 + }, + { + "name": "interact_nightnight_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_NightNight_Interact_02", + "templateId": "Quest:Quest_BR_S10_NightNight_Interact_02", + "objectives": [ + { + "name": "interact_nightnight_02", + "count": 1 + }, + { + "name": "interact_nightnight_03", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_NightNight_Interact_03", + "templateId": "Quest:Quest_BR_S10_NightNight_Interact_03", + "objectives": [ + { + "name": "interact_nightnight_04", + "count": 1 + }, + { + "name": "interact_nightnight_05", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q01a", + "templateId": "Quest:Quest_S10_OT_q01a", + "objectives": [ + { + "name": "questobj_s10_OT_q01a_obj01", + "count": 47 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q01b", + "templateId": "Quest:Quest_S10_OT_q01b", + "objectives": [ + { + "name": "questobj_s10_OT_q01b_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q02a", + "templateId": "Quest:Quest_S10_OT_q02a", + "objectives": [ + { + "name": "questobj_s10_OT_q02a_obj01", + "count": 70 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q02b", + "templateId": "Quest:Quest_S10_OT_q02b", + "objectives": [ + { + "name": "questobj_s10_OT_q02b_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q03a", + "templateId": "Quest:Quest_S10_OT_q03a", + "objectives": [ + { + "name": "questobj_s10_OT_q03a_obj01", + "count": 87 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q03b", + "templateId": "Quest:Quest_S10_OT_q03b", + "objectives": [ + { + "name": "questobj_s10_OT_q03b_obj01", + "count": 5 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q05", + "templateId": "Quest:Quest_S10_OT_q05", + "objectives": [ + { + "name": "questobj_s10_OT_q05_obj01", + "count": 2500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q07", + "templateId": "Quest:Quest_S10_OT_q07", + "objectives": [ + { + "name": "questobj_s10_OT_q07_obj01", + "count": 250 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_OT_q09", + "templateId": "Quest:Quest_S10_OT_q09", + "objectives": [ + { + "name": "questobj_s10_OT_q09_obj01", + "count": 25 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_OT" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_01", + "templateId": "Quest:Quest_S10_Style_RustRemix_01", + "objectives": [ + { + "name": "s10_style_rustremix_01", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_02", + "templateId": "Quest:Quest_S10_Style_RustRemix_02", + "objectives": [ + { + "name": "s10_style_rustremix_02", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_03", + "templateId": "Quest:Quest_S10_Style_RustRemix_03", + "objectives": [ + { + "name": "s10_style_rustremix_03", + "count": 38 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_04", + "templateId": "Quest:Quest_S10_Style_RustRemix_04", + "objectives": [ + { + "name": "s10_style_rustremix_04", + "count": 84 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_05", + "templateId": "Quest:Quest_S10_Style_RustRemix_05", + "objectives": [ + { + "name": "s10_style_rustremix_05", + "count": 15 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_06", + "templateId": "Quest:Quest_S10_Style_RustRemix_06", + "objectives": [ + { + "name": "s10_style_rustremix_06", + "count": 35 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_07", + "templateId": "Quest:Quest_S10_Style_RustRemix_07", + "objectives": [ + { + "name": "s10_style_rustremix_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_08", + "templateId": "Quest:Quest_S10_Style_RustRemix_08", + "objectives": [ + { + "name": "s10_style_rustremix_08", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_09", + "templateId": "Quest:Quest_S10_Style_RustRemix_09", + "objectives": [ + { + "name": "s10_style_rustremix_09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_RustRemix_10", + "templateId": "Quest:Quest_S10_Style_RustRemix_10", + "objectives": [ + { + "name": "s10_style_rustremix_10", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_RustLord" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_Damage_AfterUsing_Boomerang", + "templateId": "Quest:Quest_BR_BM_Damage_AfterUsing_Boomerang", + "objectives": [ + { + "name": "athena_blackmonday_damage_afterusing_grappler", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_Damage_Boomerang", + "templateId": "Quest:Quest_BR_BM_Damage_Boomerang", + "objectives": [ + { + "name": "athena_blackmonday_damage_badger", + "count": 250 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_GrappleLampBoomerang_SingleMatch", + "templateId": "Quest:Quest_BR_BM_GrappleLampBoomerang_SingleMatch", + "objectives": [ + { + "name": "athena_blackmonday_do3_grappler", + "count": 1 + }, + { + "name": "athena_blackmonday_do3_lamp", + "count": 1 + }, + { + "name": "athena_blackmonday_do3_boomerang", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_Interact_Bombs", + "templateId": "Quest:Quest_BR_BM_Interact_Bombs", + "objectives": [ + { + "name": "athena_blackmonday_junkjunction", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_hauntedhills", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_pleasantpark", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_theblock", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_snobbyshores", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_polarpeak", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_shiftyshafts", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_frostyflights", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_happyhamlet", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_tiltedtowers", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_lootlake", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_lazylagoon", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_dustydepot", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_saltysprings", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_fatalfields", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_luckylanding", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_paradisepalms", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_retailrow", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_pressureplant", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_sunnysteps", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_lonelylodge", + "count": 1 + }, + { + "name": "athena_blackmonday_jam_greasygrove", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_Interact_Lamps", + "templateId": "Quest:Quest_BR_BM_Interact_Lamps", + "objectives": [ + { + "name": "athena_blackmonday_lightlamps_01", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_02", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_03", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_04", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_05", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_06", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_07", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_08", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_09", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_10", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_11", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_12", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_13", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_14", + "count": 1 + }, + { + "name": "athena_blackmonday_lightlamps_15", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_BM_Use_Grappler", + "templateId": "Quest:Quest_BR_BM_Use_Grappler", + "objectives": [ + { + "name": "athena_blackmonday_use_grappler", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_BlackMonday" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_CollectCash", + "templateId": "Quest:Quest_BR_Oak_CollectCash", + "objectives": [ + { + "name": "Quest_BR_Oak_CollectCash", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_Eliminations", + "templateId": "Quest:Quest_BR_Oak_Eliminations", + "objectives": [ + { + "name": "Quest_BR_Oak_Eliminations", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_FetchEye", + "templateId": "Quest:Quest_BR_Oak_FetchEye", + "objectives": [ + { + "name": "Quest_BR_Oak_FetchEye_01", + "count": 1 + }, + { + "name": "Quest_BR_Oak_FetchEye_02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_GainShield", + "templateId": "Quest:Quest_BR_Oak_GainShield", + "objectives": [ + { + "name": "Quest_BR_Oak_GainShield", + "count": 500 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_Search_Chests", + "templateId": "Quest:Quest_BR_Oak_Search_Chests", + "objectives": [ + { + "name": "Quest_BR_Oak_Search_Chests", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_Oak_Search_Logos", + "templateId": "Quest:Quest_BR_Oak_Search_Logos", + "objectives": [ + { + "name": "Quest_BR_Oak_Search_Logos_01", + "count": 1 + }, + { + "name": "Quest_BR_Oak_Search_Logos_02", + "count": 1 + }, + { + "name": "Quest_BR_Oak_Search_Logos_03", + "count": 1 + }, + { + "name": "Quest_BR_Oak_Search_Logos_04", + "count": 1 + }, + { + "name": "Quest_BR_Oak_Search_Logos_05", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_Event_Oak" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different", + "templateId": "Quest:Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_00", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_01", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_02", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_03", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_04", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different_05", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_DestroyStructure_JunkRift", + "templateId": "Quest:Quest_BR_S10_Mystery_DestroyStructure_JunkRift", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_DestroyStructure_JunkRift", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_Eliminations_RiftZone", + "templateId": "Quest:Quest_BR_S10_Mystery_Eliminations_RiftZone", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_Eliminations_RiftZone", + "count": 7 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift", + "templateId": "Quest:Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone", + "templateId": "Quest:Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod", + "templateId": "Quest:Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod_00", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod_01", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod_02", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone", + "templateId": "Quest:Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone", + "objectives": [ + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_00", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_01", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_02", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_03", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_04", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_05", + "count": 1 + }, + { + "name": "Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone_06", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_Mystery" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_01", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_01", + "objectives": [ + { + "name": "athena_season_levelup_S10_01", + "count": 10 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_02", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_02", + "objectives": [ + { + "name": "athena_season_levelup_S10_02", + "count": 15 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_03", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_03", + "objectives": [ + { + "name": "athena_season_levelup_S10_03", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_04", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_04", + "objectives": [ + { + "name": "athena_season_levelup_S10_04", + "count": 25 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_05", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_05", + "objectives": [ + { + "name": "athena_season_levelup_S10_05", + "count": 30 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_06", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_06", + "objectives": [ + { + "name": "athena_season_levelup_S10_06", + "count": 35 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_07", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_07", + "objectives": [ + { + "name": "athena_season_levelup_S10_07", + "count": 40 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_08", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_08", + "objectives": [ + { + "name": "athena_season_levelup_S10_08", + "count": 45 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_09", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_09", + "objectives": [ + { + "name": "athena_season_levelup_S10_09", + "count": 50 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_10", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_10", + "objectives": [ + { + "name": "athena_season_levelup_S10_10", + "count": 55 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_11", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_11", + "objectives": [ + { + "name": "athena_season_levelup_S10_11", + "count": 60 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_LevelUp_SeasonLevel_12", + "templateId": "Quest:Quest_BR_S10_LevelUp_SeasonLevel_12", + "objectives": [ + { + "name": "athena_season_levelup_S10_12", + "count": 65 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:MissionBundle_S10_SeasonLevel" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_SeasonX_BPMissions", + "templateId": "Quest:Quest_BR_S10_SeasonX_BPMissions", + "objectives": [ + { + "name": "athena_s10_seasonx_bpmissions_01a", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_01b", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_02", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_03", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_04", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_05", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_06", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_07", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_08", + "count": 1 + }, + { + "name": "athena_s10_seasonx_bpmissions_09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_SeasonX_Mystery", + "templateId": "Quest:Quest_BR_S10_SeasonX_Mystery", + "objectives": [ + { + "name": "athena_s10_seasonx_mystery", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_SeasonX_PrestigeMissions", + "templateId": "Quest:Quest_BR_S10_SeasonX_PrestigeMissions", + "objectives": [ + { + "name": "athena_s10_seasonx_prestigemissions_01a", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_01b", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_02", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_03", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_04", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_05", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_06", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_07", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_08", + "count": 1 + }, + { + "name": "athena_s10_seasonx_prestigemissions_09", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_SeasonX_SeasonLevel", + "templateId": "Quest:Quest_BR_S10_SeasonX_SeasonLevel", + "objectives": [ + { + "name": "athena_s10_seasonx_seasonlevelmission", + "count": 12 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + }, + { + "itemGuid": "S10-Quest:Quest_BR_S10_SeasonX_Tier100", + "templateId": "Quest:Quest_BR_S10_SeasonX_Tier100", + "objectives": [ + { + "name": "athena_s10_seasonx_tier100", + "count": 100 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:QuestBundle_S10_SeasonX" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_01", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_01", + "objectives": [ + { + "name": "s10_style_sparkleremix_01", + "count": 3 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_02", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_02", + "objectives": [ + { + "name": "s10_style_sparkleremix_02", + "count": 55 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_03", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_03", + "objectives": [ + { + "name": "s10_style_sparkleremix_03", + "count": 70 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_04", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_04", + "objectives": [ + { + "name": "s10_style_sparkleremix_04", + "count": 71 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_05", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_05", + "objectives": [ + { + "name": "s10_style_sparkleremix_05", + "count": 75 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_06", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_06", + "objectives": [ + { + "name": "s10_style_sparkleremix_06", + "count": 50 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_07", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_07", + "objectives": [ + { + "name": "s10_style_sparkleremix_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_SparkleRemix_08", + "templateId": "Quest:Quest_S10_Style_SparkleRemix_08", + "objectives": [ + { + "name": "s10_style_sparkleremix_08", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Sparkle" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_01", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_01", + "objectives": [ + { + "name": "s10_style_graffitiremix_01", + "count": 23 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_02", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_02", + "objectives": [ + { + "name": "s10_style_graffitiremix_02", + "count": 30 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_03", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_03", + "objectives": [ + { + "name": "s10_style_graffitiremix_03", + "count": 20 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_04", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_04", + "objectives": [ + { + "name": "s10_style_graffitiremix_04", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_05", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_05", + "objectives": [ + { + "name": "s10_style_graffitiremix_05", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_06", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_06", + "objectives": [ + { + "name": "s10_style_graffitiremix_06", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_GraffitiRemix_07", + "templateId": "Quest:Quest_S10_Style_GraffitiRemix_07", + "objectives": [ + { + "name": "s10_style_graffitiremix_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Teknique" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_01", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_01", + "objectives": [ + { + "name": "s10_style_voyagerremix_01", + "count": 15 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_02", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_02", + "objectives": [ + { + "name": "s10_style_voyagerremix_02", + "count": 77 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_03", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_03", + "objectives": [ + { + "name": "s10_style_voyagerremix_03", + "count": 87 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_04", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_04", + "objectives": [ + { + "name": "s10_style_voyagerremix_04", + "count": 93 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_05", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_05", + "objectives": [ + { + "name": "s10_style_voyagerremix_05", + "count": 60 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_06", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_06", + "objectives": [ + { + "name": "s10_style_voyagerremix_06", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + }, + { + "itemGuid": "S10-Quest:Quest_S10_Style_VoyagerRemix_07", + "templateId": "Quest:Quest_S10_Style_VoyagerRemix_07", + "objectives": [ + { + "name": "s10_style_voyagerremix_07", + "count": 1 + } + ], + "challenge_bundle_id": "S10-ChallengeBundle:UnlockPreviewBundle_S10_Voyager" + } ] }, - { - "templateId": "Quest:Daily_DestroyTVs", - "objectives": [ - "quest_reactive_destroytv_v2" + "Season11": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_AlterEgo_Schedule", + "templateId": "ChallengeBundleSchedule:Season11_AlterEgo_Schedule", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season11_Feat_BundleSchedule", + "granted_bundles": [ + "S11-ChallengeBundle:Season11_Feat_Bundle" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season11_Mission_Schedule", + "granted_bundles": [ + "S11-ChallengeBundle:MissionBundle_S11_Week_01A", + "S11-ChallengeBundle:MissionBundle_S11_Week_01B", + "S11-ChallengeBundle:MissionBundle_S11_Week_02", + "S11-ChallengeBundle:MissionBundle_S11_Week_05", + "S11-ChallengeBundle:MissionBundle_S11_Week_04", + "S11-ChallengeBundle:MissionBundle_S11_Week_03", + "S11-ChallengeBundle:MissionBundle_S11_Week_06", + "S11-ChallengeBundle:MissionBundle_S11_Week_07", + "S11-ChallengeBundle:MissionBundle_S11_Week_08", + "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2", + "S11-ChallengeBundle:MissionBundle_S11_OT1", + "S11-ChallengeBundle:MissionBundle_S11_OT2", + "S11-ChallengeBundle:MissionBundle_S11_OT3", + "S11-ChallengeBundle:MissionBundle_S11_OT4" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule_BattlePass", + "templateId": "ChallengeBundleSchedule:Season11_Mission_Schedule_BattlePass", + "granted_bundles": [ + "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_CoinCollect", + "templateId": "ChallengeBundleSchedule:Season11_Schedule_Event_CoinCollect", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Fortnitemares", + "templateId": "ChallengeBundleSchedule:Season11_Schedule_Event_Fortnitemares", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Galileo", + "templateId": "ChallengeBundleSchedule:Season11_Schedule_Event_Galileo", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_Event_Galileo" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Galileo_Feats", + "templateId": "ChallengeBundleSchedule:Season11_Schedule_Event_Galileo_Feats", + "granted_bundles": [ + "S11-ChallengeBundle:Season11_Galileo_Feat_Bundle" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Winterfest", + "templateId": "ChallengeBundleSchedule:Season11_Schedule_Event_Winterfest", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + ] + }, + { + "itemGuid": "S11-ChallengeBundleSchedule:Season11_Unfused_Schedule", + "templateId": "ChallengeBundleSchedule:Season11_Unfused_Schedule", + "granted_bundles": [ + "S11-ChallengeBundle:QuestBundle_S11_Unfused" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo", + "templateId": "ChallengeBundle:QuestBundle_S11_AlterEgo", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_AlterEgo_01a", + "S11-Quest:Quest_S11_AlterEgo_02a", + "S11-Quest:Quest_S11_AlterEgo_03a", + "S11-Quest:Quest_S11_AlterEgo_04a", + "S11-Quest:Quest_S11_AlterEgo_05a", + "S11-Quest:Quest_S11_AlterEgo_06a", + "S11-Quest:Quest_S11_AlterEgo_08" + ], + "questStages": [ + "S11-Quest:Quest_S11_AlterEgo_01b", + "S11-Quest:Quest_S11_AlterEgo_01c", + "S11-Quest:Quest_S11_AlterEgo_02b", + "S11-Quest:Quest_S11_AlterEgo_02c", + "S11-Quest:Quest_S11_AlterEgo_03b", + "S11-Quest:Quest_S11_AlterEgo_03c", + "S11-Quest:Quest_S11_AlterEgo_04b", + "S11-Quest:Quest_S11_AlterEgo_04c", + "S11-Quest:Quest_S11_AlterEgo_05b", + "S11-Quest:Quest_S11_AlterEgo_05c", + "S11-Quest:Quest_S11_AlterEgo_06b", + "S11-Quest:Quest_S11_AlterEgo_06c", + "S11-Quest:Quest_S11_AlterEgo_08_b", + "S11-Quest:Quest_S11_AlterEgo_08_c" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_AlterEgo_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:Season11_Feat_Bundle", + "templateId": "ChallengeBundle:Season11_Feat_Bundle", + "grantedquestinstanceids": [ + "S11-Quest:Feat_Season11_BandageInStorm", + "S11-Quest:Feat_Season11_PetPet", + "S11-Quest:Feat_Season11_WinDuos", + "S11-Quest:Feat_Season11_WinSolos", + "S11-Quest:Feat_Season11_WinSquads", + "S11-Quest:Feat_Season11_HarvestWoodSingleMatch", + "S11-Quest:Feat_Season11_HarvestStoneSingleMatch", + "S11-Quest:Feat_Season11_HarvestMetalSingleMatch", + "S11-Quest:Feat_Season11_LandedFirstTime", + "S11-Quest:Feat_Season11_UseMedkitAt1HP", + "S11-Quest:Feat_Season11_KillAfterOpeningSupplyDrop", + "S11-Quest:Feat_Season11_Lifeguard", + "S11-Quest:Feat_Season11_DestroyHollyHedges", + "S11-Quest:Feat_Season11_DestroyFishstickDecorations", + "S11-Quest:Feat_Season11_EliminateOpponentsPowerPlant", + "S11-Quest:Feat_Season11_GainShieldSlurpySwamp", + "S11-Quest:Feat_Season11_CatchFishSunnyShores", + "S11-Quest:Feat_Season11_EliminateOpponentDirtyDocksAfterJumpingFromBus", + "S11-Quest:Feat_Season11_LandSalty", + "S11-Quest:Feat_Season11_WinSoloManyElims", + "S11-Quest:Feat_Season11_EliminateTrapMountainMeadows", + "S11-Quest:Feat_Season11_RevivedInFrenzyFarmBarn", + "S11-Quest:Feat_Season11_PickUpCommonPistol", + "S11-Quest:Feat_Season11_EatFlooper", + "S11-Quest:Feat_Season11_EatFlopper", + "S11-Quest:Feat_Season11_EatManyFlopper", + "S11-Quest:Feat_Season11_EliminateWaterSMG", + "S11-Quest:Feat_Season11_WinSolos10", + "S11-Quest:Feat_Season11_WinSolos100", + "S11-Quest:Feat_Season11_WinDuos10", + "S11-Quest:Feat_Season11_WinDuos100", + "S11-Quest:Feat_Season11_WinSquads10", + "S11-Quest:Feat_Season11_WinSquads100", + "S11-Quest:Feat_Season11_WinTeamRumble", + "S11-Quest:Feat_Season11_WinTeamRumble100", + "S11-Quest:Feat_Season11_ReachLevel110", + "S11-Quest:Feat_Season11_ReachLevel250", + "S11-Quest:Feat_Season11_CompleteMission", + "S11-Quest:Feat_Season11_CompleteAllMissions", + "S11-Quest:Feat_Season11_CatchFishBucketNice", + "S11-Quest:Feat_Season11_DeathBucketNice", + "S11-Quest:Feat_Season11_EliminateBucketNice", + "S11-Quest:Feat_Season11_EliminateRocketRiding", + "S11-Quest:Feat_Season11_ScoreSoccerGoalPleasant", + "S11-Quest:Feat_Season11_EliminateDadBro", + "S11-Quest:Feat_Season11_EliminateOpponentPumpkinLauncher_MinDistance", + "S11-Quest:Feat_Season11_GainShieldFiendKill", + "S11-Quest:Feat_Season11_HideDumpster", + "S11-Quest:Feat_Season11_EliminateHarvestingTool", + "S11-Quest:Feat_Season11_EliminateAfterHarpoonPull", + "S11-Quest:Feat_Season11_Chests_Risky_SameMatch", + "S11-Quest:Feat_Season11_EliminateYeetFallDamage" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Feat_BundleSchedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_OT1", + "templateId": "ChallengeBundle:MissionBundle_S11_OT1", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_OT1_01a", + "S11-Quest:Quest_S11_OT1_02", + "S11-Quest:Quest_S11_OT1_03alt", + "S11-Quest:Quest_S11_OT1_04", + "S11-Quest:Quest_S11_OT1_05", + "S11-Quest:Quest_S11_OT1_06", + "S11-Quest:Quest_S11_OT1_07", + "S11-Quest:Quest_S11_OT1_08alt", + "S11-Quest:Quest_S11_OT1_09", + "S11-Quest:Quest_S11_OT1_10alt", + "S11-Quest:Quest_S11_OT1_11" + ], + "questStages": [ + "S11-Quest:Quest_S11_OT1_01b" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_OT2", + "templateId": "ChallengeBundle:MissionBundle_S11_OT2", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_OT2_01a", + "S11-Quest:Quest_S11_OT2_02", + "S11-Quest:Quest_S11_OT2_03", + "S11-Quest:Quest_S11_OT2_04", + "S11-Quest:Quest_S11_OT2_05", + "S11-Quest:Quest_S11_OT2_06", + "S11-Quest:Quest_S11_OT2_07", + "S11-Quest:Quest_S11_OT2_08", + "S11-Quest:Quest_S11_OT2_09", + "S11-Quest:Quest_S11_OT2_10", + "S11-Quest:Quest_S11_OT2_11" + ], + "questStages": [ + "S11-Quest:Quest_S11_OT2_01b" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_OT3", + "templateId": "ChallengeBundle:MissionBundle_S11_OT3", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_OT3_01a", + "S11-Quest:Quest_S11_OT3_02", + "S11-Quest:Quest_S11_OT3_03", + "S11-Quest:Quest_S11_OT3_04", + "S11-Quest:Quest_S11_OT3_05", + "S11-Quest:Quest_S11_OT3_06", + "S11-Quest:Quest_S11_OT3_07", + "S11-Quest:Quest_S11_OT3_08", + "S11-Quest:Quest_S11_OT3_09", + "S11-Quest:Quest_S11_OT3_10", + "S11-Quest:Quest_S11_OT3_11" + ], + "questStages": [ + "S11-Quest:Quest_S11_OT3_01b" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_OT4", + "templateId": "ChallengeBundle:MissionBundle_S11_OT4", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_OT4_01a", + "S11-Quest:Quest_S11_OT4_02", + "S11-Quest:Quest_S11_OT4_03", + "S11-Quest:Quest_S11_OT4_06", + "S11-Quest:Quest_S11_OT4_04", + "S11-Quest:Quest_S11_OT4_05", + "S11-Quest:Quest_S11_OT4_07", + "S11-Quest:Quest_S11_OT4_08", + "S11-Quest:Quest_S11_OT4_09", + "S11-Quest:Quest_S11_OT4_10", + "S11-Quest:Quest_S11_OT4_11" + ], + "questStages": [ + "S11-Quest:Quest_S11_OT4_01b" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2", + "templateId": "ChallengeBundle:MissionBundle_S11_StretchGoals2", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_StretchGoals_Damage_03", + "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "S11-Quest:Quest_S11_StretchGoals_Elim_03", + "S11-Quest:Quest_S11_StretchGoals_Outlast_03", + "S11-Quest:Quest_S11_StretchGoals_Damage_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Elim_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Outlast_Prestige" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_01A", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_01A", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W01a_01", + "S11-Quest:Quest_S11_W01a_02", + "S11-Quest:Quest_S11_W01a_03", + "S11-Quest:Quest_S11_W01a_04", + "S11-Quest:Quest_S11_W01a_05", + "S11-Quest:Quest_S11_W01a_06", + "S11-Quest:Quest_S11_W01a_07", + "S11-Quest:Quest_S11_W01a_08", + "S11-Quest:Quest_S11_W01a_09", + "S11-Quest:Quest_S11_W01a_10", + "S11-Quest:Quest_S11_W01a_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_01B", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_01B", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W01b_10", + "S11-Quest:Quest_S11_W01b_02", + "S11-Quest:Quest_S11_W01b_03", + "S11-Quest:Quest_S11_W01b_01", + "S11-Quest:Quest_S11_W01b_05", + "S11-Quest:Quest_S11_W01b_04", + "S11-Quest:Quest_S11_W01b_07", + "S11-Quest:Quest_S11_W01b_06", + "S11-Quest:Quest_S11_W01b_08", + "S11-Quest:Quest_S11_W01b_09", + "S11-Quest:Quest_S11_W01b_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_02", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W02_01", + "S11-Quest:Quest_S11_W02_02", + "S11-Quest:Quest_S11_W02_03", + "S11-Quest:Quest_S11_W02_04", + "S11-Quest:Quest_S11_W02_05", + "S11-Quest:Quest_S11_W02_06", + "S11-Quest:Quest_S11_W02_07", + "S11-Quest:Quest_S11_W02_08", + "S11-Quest:Quest_S11_W02_09", + "S11-Quest:Quest_S11_W02_10", + "S11-Quest:Quest_S11_W02_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_03", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W03_01", + "S11-Quest:Quest_S11_W03_02", + "S11-Quest:Quest_S11_W03_03", + "S11-Quest:Quest_S11_W03_04", + "S11-Quest:Quest_S11_W03_05", + "S11-Quest:Quest_S11_W03_06", + "S11-Quest:Quest_S11_W03_07", + "S11-Quest:Quest_S11_W03_08", + "S11-Quest:Quest_S11_W03_09", + "S11-Quest:Quest_S11_W03_10", + "S11-Quest:Quest_S11_W03_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_04", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W04_01", + "S11-Quest:Quest_S11_W05_06", + "S11-Quest:Quest_S11_W04_03", + "S11-Quest:Quest_S11_W04_04", + "S11-Quest:Quest_S11_W04_05", + "S11-Quest:Quest_S11_W04_06", + "S11-Quest:Quest_S11_W04_07", + "S11-Quest:Quest_S11_W04_08", + "S11-Quest:Quest_S11_W04_09", + "S11-Quest:Quest_S11_W04_10", + "S11-Quest:Quest_S11_W04_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_05", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W05_04", + "S11-Quest:Quest_S11_W05_05", + "S11-Quest:Quest_S11_W04_02", + "S11-Quest:Quest_S11_W05_07", + "S11-Quest:Quest_S11_W05_10", + "S11-Quest:Quest_S11_W05_02", + "S11-Quest:Quest_S11_W05_03", + "S11-Quest:Quest_S11_W05_08", + "S11-Quest:Quest_S11_W05_09", + "S11-Quest:Quest_S11_W05_01", + "S11-Quest:Quest_S11_W05_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_06", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W06_01", + "S11-Quest:Quest_S11_W06_02", + "S11-Quest:Quest_S11_W06_08", + "S11-Quest:Quest_S11_W06_04", + "S11-Quest:Quest_S11_W06_05", + "S11-Quest:Quest_S11_W06_06", + "S11-Quest:Quest_S11_W06_07", + "S11-Quest:Quest_S11_W06_03", + "S11-Quest:Quest_S11_W06_09", + "S11-Quest:Quest_S11_W06_10", + "S11-Quest:Quest_S11_W06_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_07", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W07_01", + "S11-Quest:Quest_S11_W07_07", + "S11-Quest:Quest_S11_W07_03", + "S11-Quest:Quest_S11_W07_08", + "S11-Quest:Quest_S11_W07_05", + "S11-Quest:Quest_S11_W07_06", + "S11-Quest:Quest_S11_W07_02", + "S11-Quest:Quest_S11_W07_04", + "S11-Quest:Quest_S11_W07_09", + "S11-Quest:Quest_S11_W07_10", + "S11-Quest:Quest_S11_W07_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S11_Week_08", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_W08_01", + "S11-Quest:Quest_S11_W08_02", + "S11-Quest:Quest_S11_W08_03", + "S11-Quest:Quest_S11_W08_04", + "S11-Quest:Quest_S11_W08_05", + "S11-Quest:Quest_S11_W08_06", + "S11-Quest:Quest_S11_W08_07", + "S11-Quest:Quest_S11_W08_08", + "S11-Quest:Quest_S11_W08_09", + "S11-Quest:Quest_S11_W08_10", + "S11-Quest:Quest_S11_W08_11" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule" + }, + { + "itemGuid": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2", + "templateId": "ChallengeBundle:MissionBundle_S11_StretchGoals2", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_StretchGoals_Damage_03", + "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "S11-Quest:Quest_S11_StretchGoals_Elim_03", + "S11-Quest:Quest_S11_StretchGoals_Outlast_03", + "S11-Quest:Quest_S11_StretchGoals_Damage_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Elim_Prestige", + "S11-Quest:Quest_S11_StretchGoals_Outlast_Prestige" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Mission_Schedule_BattlePass" + }, + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP", + "templateId": "ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP", + "grantedquestinstanceids": [ + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_01", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_02", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_03", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_04", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_05", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_06", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_07", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_08", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_09", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_10", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_11", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_12", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_13", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_14", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_15", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_16", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_17", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_18", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_19", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_20", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_21", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_22", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_23", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_24", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_25", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_26", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_27", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_28", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_29", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_30", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_31", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_32", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_33", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_34", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_35", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_36", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_37", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_38", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_39", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_40", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_41", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_42", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_43", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_44", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_45", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_46", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_47", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_48", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_49", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_50", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_51", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_52", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_53", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_54", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_55", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_56", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_57", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_58", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_59", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_60", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_61", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_62", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_63", + "S11-Quest:Quest_BR_ItemCollect_Coin_SM_64" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM", + "templateId": "ChallengeBundle:QuestBundle_Event_S11_FNM", + "grantedquestinstanceids": [ + "S11-Quest:Quest_FNM_S11_HauntedItems", + "S11-Quest:Quest_FNM_S11_UnHide_NearEnemies", + "S11-Quest:Quest_FNM_S11_Chests_CornfieldForestTown", + "S11-Quest:Quest_FNM_S11_Damage_DadBro_WS", + "S11-Quest:Quest_FNM_S11_Revives_DadBro", + "S11-Quest:Quest_FNM_S11_Defeat_DadBro" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Fortnitemares" + }, + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_Event_Galileo", + "templateId": "ChallengeBundle:QuestBundle_Event_Galileo", + "grantedquestinstanceids": [ + "S11-Quest:quest_s11_galileo_stage1tokens", + "S11-Quest:quest_s11_galileo_stage2tokens", + "S11-Quest:quest_s11_galileo_stage3tokens", + "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_1", + "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_1", + "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_1", + "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_1", + "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_1" + ], + "questStages": [ + "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_2", + "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_3", + "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_2", + "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_3", + "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_2", + "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_3", + "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_2", + "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_3", + "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_2", + "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_3" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Galileo" + }, + { + "itemGuid": "S11-ChallengeBundle:Season11_Galileo_Feat_Bundle", + "templateId": "ChallengeBundle:Season11_Galileo_Feat_Bundle", + "grantedquestinstanceids": [ + "S11-Quest:Feat_Galileo_Attended", + "S11-Quest:Feat_Galileo_Collect_LobsterKayak_Kayak", + "S11-Quest:Feat_Galileo_Collect_LobsterKayak_Rocket", + "S11-Quest:Feat_Galileo_Collect_LobsterRocket_Columbus", + "S11-Quest:Feat_Galileo_Collect_LobsterRocket_Ferry", + "S11-Quest:Feat_Galileo_Collect_LobsterRocket_Kayak", + "S11-Quest:Feat_Galileo_Collect_LobsterRocket_Rocket", + "S11-Quest:Feat_Galileo_Collect_LobsterRocket_Sled", + "S11-Quest:Feat_Galileo_Damage_Above", + "S11-Quest:Feat_Galileo_Death_Trap", + "S11-Quest:Feat_Galileo_Elim_Lobster_AltFire", + "S11-Quest:Feat_Galileo_Elim_OneShot", + "S11-Quest:Feat_Galileo_Emote", + "S11-Quest:Feat_Galileo_Ferry_Backbling", + "S11-Quest:Feat_Galileo_Ferry_Elim_NPC", + "S11-Quest:Feat_Galileo_Glider_Ferry", + "S11-Quest:Feat_Galileo_Glider_Kayak", + "S11-Quest:Feat_Galileo_Glider_Rocket", + "S11-Quest:Feat_Galileo_Glider_ZeppelinFemale", + "S11-Quest:Feat_Galileo_Kayak_TeamElim", + "S11-Quest:Feat_Galileo_Lobster_AltFire", + "S11-Quest:Feat_Galileo_Lobster_AltFire_Lobster", + "S11-Quest:Feat_Galileo_Lobster_Pickup", + "S11-Quest:Feat_Galileo_Reboot", + "S11-Quest:Feat_Galileo_Rocket_Heal", + "S11-Quest:Feat_Galileo_StormDamage", + "S11-Quest:Feat_Galileo_Zeppelin_Elim_FallDamage" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Galileo_Feats" + }, + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest", + "templateId": "ChallengeBundle:QuestBundle_Event_S11_Winterfest", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_Winterfest_Crackshot_01", + "S11-Quest:Quest_S11_Winterfest_Crackshot_02", + "S11-Quest:Quest_S11_Winterfest_Crackshot_03", + "S11-Quest:Quest_S11_Winterfest_Crackshot_04", + "S11-Quest:Quest_S11_Winterfest_Crackshot_05", + "S11-Quest:Quest_S11_Winterfest_Crackshot_06", + "S11-Quest:Quest_S11_Winterfest_Crackshot_07", + "S11-Quest:Quest_S11_Winterfest_Crackshot_08", + "S11-Quest:Quest_S11_Winterfest_Crackshot_09", + "S11-Quest:Quest_S11_Winterfest_Crackshot_10", + "S11-Quest:Quest_S11_Winterfest_Crackshot_11", + "S11-Quest:Quest_S11_Winterfest_Crackshot_12", + "S11-Quest:Quest_S11_Winterfest_Crackshot_13", + "S11-Quest:Quest_S11_Winterfest_Crackshot_14", + "S11-Quest:Quest_S11_Winterfest_Crackshot_15", + "S11-Quest:Quest_S11_Winterfest_Crackshot_16" + ], + "questStages": [ + "S11-Quest:Quest_S11_Winterfest_Damage_Opponent_SnowballLauncher", + "S11-Quest:Quest_S11_Winterfest_Stoke_Campfire", + "S11-Quest:Quest_S11_Winterfest_Eliminate_UnvaultedWeapon", + "S11-Quest:Quest_S11_Winterfest_Hide_SneakySnowman", + "S11-Quest:Quest_S11_Winterfest_Crackshot_Warmself", + "S11-Quest:Quest_S11_Winterfest_Emote_HolidayTrees", + "S11-Quest:Quest_S11_Winterfest_Search_Chest_60secsBattlebus", + "S11-Quest:Quest_S11_Winterfest_Use_Presents", + "S11-Quest:Quest_S11_Winterfest_Open_FrozenLoot", + "S11-Quest:Quest_S11_Winterfest_Damage_Opponent_Coal", + "S11-Quest:Quest_S11_Winterfest_Destroy_Snowman_Lobster", + "S11-Quest:Quest_S11_Winterfest_Destroy_Snowflake", + "S11-Quest:Quest_S11_Winterfest_Use_IceMachines", + "S11-Quest:Quest_S11_Winterfest_Visit_CrackshotsCabin_ToyFactory_IceFactory", + "S11-Quest:Quest_S11_Winterfest_Light_FrozenFireworks", + "S11-Quest:Quest_S11_Winterfest_Search_Ammo_Icehotel_Icechair" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Schedule_Event_Winterfest" + }, + { + "itemGuid": "S11-ChallengeBundle:QuestBundle_S11_Unfused", + "templateId": "ChallengeBundle:QuestBundle_S11_Unfused", + "grantedquestinstanceids": [ + "S11-Quest:Quest_S11_Unfused_01", + "S11-Quest:Quest_S11_Unfused_02", + "S11-Quest:Quest_S11_Unfused_03", + "S11-Quest:Quest_S11_Unfused_09_Carry_Teammate_Storm", + "S11-Quest:Quest_S11_Unfused_04", + "S11-Quest:Quest_S11_Unfused_05", + "S11-Quest:Quest_S11_Unfused_07", + "S11-Quest:Quest_S11_Unfused_08", + "S11-Quest:Quest_S11_Unfused_10_Throw_Enemy_FallDamage", + "S11-Quest:Quest_S11_Unfused_06" + ], + "challenge_bundle_schedule_id": "S11-ChallengeBundleSchedule:Season11_Unfused_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_01a", + "templateId": "Quest:Quest_S11_AlterEgo_01a", + "objectives": [ + { + "name": "questobj_s11_alterego_01a_reach_bp_tier", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_01b", + "templateId": "Quest:Quest_S11_AlterEgo_01b", + "objectives": [ + { + "name": "questobj_s11_alterego_01b_finish_missions", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_01c", + "templateId": "Quest:Quest_S11_AlterEgo_01c", + "objectives": [ + { + "name": "questobj_s11_alterego_01c_catch_fish_with_outfit", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_02a", + "templateId": "Quest:Quest_S11_AlterEgo_02a", + "objectives": [ + { + "name": "questobj_s11_alterego_02a_reach_bp_tier", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_02b", + "templateId": "Quest:Quest_S11_AlterEgo_02b", + "objectives": [ + { + "name": "questobj_s11_alterego_02b_finish_missions", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_02c", + "templateId": "Quest:Quest_S11_AlterEgo_02c", + "objectives": [ + { + "name": "questobj_s11_alterego_02c_summit_mountain_wearing_outfit", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_03a", + "templateId": "Quest:Quest_S11_AlterEgo_03a", + "objectives": [ + { + "name": "questobj_s11_alterego_03a_reach_bp_tier", + "count": 20 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_03b", + "templateId": "Quest:Quest_S11_AlterEgo_03b", + "objectives": [ + { + "name": "questobj_s11_alterego_02b_finish_missions", + "count": 4 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_03c", + "templateId": "Quest:Quest_S11_AlterEgo_03c", + "objectives": [ + { + "name": "questobj_s11_alterego_03c_slurpvat_wearing_outfit", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_04a", + "templateId": "Quest:Quest_S11_AlterEgo_04a", + "objectives": [ + { + "name": "questobj_s11_alterego_04a_reach_bp_tier", + "count": 40 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_04b", + "templateId": "Quest:Quest_S11_AlterEgo_04b", + "objectives": [ + { + "name": "questobj_s11_alterego_04b_finish_missions", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_04c", + "templateId": "Quest:Quest_S11_AlterEgo_04c", + "objectives": [ + { + "name": "questobj_s11_alterego_05c_heal_teammate_wearing_outfit", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_05a", + "templateId": "Quest:Quest_S11_AlterEgo_05a", + "objectives": [ + { + "name": "questobj_s11_alterego_05a_reach_bp_tier", + "count": 60 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_05b", + "templateId": "Quest:Quest_S11_AlterEgo_05b", + "objectives": [ + { + "name": "questobj_s11_alterego_05b_finish_missions", + "count": 6 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_05c", + "templateId": "Quest:Quest_S11_AlterEgo_05c", + "objectives": [ + { + "name": "questobj_s11_alterego_05c_sink_8ball_wearing_outfit", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_06a", + "templateId": "Quest:Quest_S11_AlterEgo_06a", + "objectives": [ + { + "name": "questobj_s11_alterego_06a_reach_bp_tier", + "count": 80 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_06b", + "templateId": "Quest:Quest_S11_AlterEgo_06b", + "objectives": [ + { + "name": "questobj_s11_alterego_06b_finish_missions", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_06c", + "templateId": "Quest:Quest_S11_AlterEgo_06c", + "objectives": [ + { + "name": "questobj_s11_alterego_06c_obj1", + "count": 1 + }, + { + "name": "questobj_s11_alterego_06c_obj2", + "count": 1 + }, + { + "name": "questobj_s11_alterego_06c_obj3", + "count": 1 + }, + { + "name": "questobj_s11_alterego_06c_obj4", + "count": 1 + }, + { + "name": "questobj_s11_alterego_06c_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_08", + "templateId": "Quest:Quest_S11_AlterEgo_08", + "objectives": [ + { + "name": "questobj_s11_alterego_08_collect_fortnite", + "count": 8 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_08_b", + "templateId": "Quest:Quest_S11_AlterEgo_08_b", + "objectives": [ + { + "name": "questobj_s11_alterego_08_search_backbling", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_AlterEgo_08_c", + "templateId": "Quest:Quest_S11_AlterEgo_08_c", + "objectives": [ + { + "name": "questobj_s11_alterego_08_do_the_thing", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_AlterEgo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_01a", + "templateId": "Quest:Quest_S11_OT1_01a", + "objectives": [ + { + "name": "questobj_s11_ot1_q01a_obj01", + "count": 40 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_01b", + "templateId": "Quest:Quest_S11_OT1_01b", + "objectives": [ + { + "name": "questobj_s11_ot1_q01b_obj01", + "count": 9 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_02", + "templateId": "Quest:Quest_S11_OT1_02", + "objectives": [ + { + "name": "questobj_s11_ot1_q02_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q02_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q02_obj03", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q02_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_03alt", + "templateId": "Quest:Quest_S11_OT1_03alt", + "objectives": [ + { + "name": "questobj_s11_ot1_q03alt_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_04", + "templateId": "Quest:Quest_S11_OT1_04", + "objectives": [ + { + "name": "questobj_s11_ot1_q04_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_05", + "templateId": "Quest:Quest_S11_OT1_05", + "objectives": [ + { + "name": "questobj_s11_ot1_q05_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_06", + "templateId": "Quest:Quest_S11_OT1_06", + "objectives": [ + { + "name": "questobj_s11_ot1_q06_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_07", + "templateId": "Quest:Quest_S11_OT1_07", + "objectives": [ + { + "name": "questobj_s11_ot1_q07_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q07_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q07_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_08alt", + "templateId": "Quest:Quest_S11_OT1_08alt", + "objectives": [ + { + "name": "questobj_s11_ot1_q08alt_obj01", + "count": 2500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_09", + "templateId": "Quest:Quest_S11_OT1_09", + "objectives": [ + { + "name": "questobj_s11_ot1_q09_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj03", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj04", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj05", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj06", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj07", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj08", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj09", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj10", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj11", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj12", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj13", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj14", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj15", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj16", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q09_obj17", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_10alt", + "templateId": "Quest:Quest_S11_OT1_10alt", + "objectives": [ + { + "name": "questobj_s11_ot1_q10alt_obj01", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT1_11", + "templateId": "Quest:Quest_S11_OT1_11", + "objectives": [ + { + "name": "questobj_s11_ot1_q11_obj00", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q11_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot1_q11_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT1" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_01a", + "templateId": "Quest:Quest_S11_OT2_01a", + "objectives": [ + { + "name": "questobj_s11_ot2_q01a_obj01", + "count": 50 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_01b", + "templateId": "Quest:Quest_S11_OT2_01b", + "objectives": [ + { + "name": "questobj_s11_ot2_q01b_obj01", + "count": 9 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_02", + "templateId": "Quest:Quest_S11_OT2_02", + "objectives": [ + { + "name": "questobj_s11_ot2_q02_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_03", + "templateId": "Quest:Quest_S11_OT2_03", + "objectives": [ + { + "name": "questobj_s11_ot2_q03_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_04", + "templateId": "Quest:Quest_S11_OT2_04", + "objectives": [ + { + "name": "questobj_s11_ot2_q04_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_05", + "templateId": "Quest:Quest_S11_OT2_05", + "objectives": [ + { + "name": "questobj_s11_ot2_q05_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_06", + "templateId": "Quest:Quest_S11_OT2_06", + "objectives": [ + { + "name": "questobj_s11_ot2_q06_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_07", + "templateId": "Quest:Quest_S11_OT2_07", + "objectives": [ + { + "name": "questobj_s11_ot2_q07_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_08", + "templateId": "Quest:Quest_S11_OT2_08", + "objectives": [ + { + "name": "questobj_s11_ot2_q08_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot2_q08_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_09", + "templateId": "Quest:Quest_S11_OT2_09", + "objectives": [ + { + "name": "questobj_s11_ot2_q9_obj01", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_10", + "templateId": "Quest:Quest_S11_OT2_10", + "objectives": [ + { + "name": "questobj_s11_ot2_q10_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT2_11", + "templateId": "Quest:Quest_S11_OT2_11", + "objectives": [ + { + "name": "questobj_s11_ot2_q11_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot2_q11_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot2_q11_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_01a", + "templateId": "Quest:Quest_S11_OT3_01a", + "objectives": [ + { + "name": "questobj_s11_ot3_q01a_obj01", + "count": 60 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_01b", + "templateId": "Quest:Quest_S11_OT3_01b", + "objectives": [ + { + "name": "questobj_s11_ot3_q01b_obj01", + "count": 9 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_02", + "templateId": "Quest:Quest_S11_OT3_02", + "objectives": [ + { + "name": "questobj_s11_ot3_q02_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_03", + "templateId": "Quest:Quest_S11_OT3_03", + "objectives": [ + { + "name": "questobj_s11_ot3_q03_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_04", + "templateId": "Quest:Quest_S11_OT3_04", + "objectives": [ + { + "name": "questobj_s11_ot3_q04_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q04_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q04_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_05", + "templateId": "Quest:Quest_S11_OT3_05", + "objectives": [ + { + "name": "questobj_s11_ot3_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj03", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj04", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj05", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj06", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj07", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj08", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj09", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q05_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_06", + "templateId": "Quest:Quest_S11_OT3_06", + "objectives": [ + { + "name": "questobj_s11_ot3_q06_obj01", + "count": 75 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_07", + "templateId": "Quest:Quest_S11_OT3_07", + "objectives": [ + { + "name": "questobj_s11_ot3_q07_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_08", + "templateId": "Quest:Quest_S11_OT3_08", + "objectives": [ + { + "name": "questobj_s11_ot3_q08_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_09", + "templateId": "Quest:Quest_S11_OT3_09", + "objectives": [ + { + "name": "questobj_s11_ot3_q09_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_10", + "templateId": "Quest:Quest_S11_OT3_10", + "objectives": [ + { + "name": "questobj_s11_ot3_q10_obj01", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q10_obj02", + "count": 1 + }, + { + "name": "questobj_s11_ot3_q10_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT3_11", + "templateId": "Quest:Quest_S11_OT3_11", + "objectives": [ + { + "name": "questobj_s11_ot3_q11_obj01", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT3" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_01a", + "templateId": "Quest:Quest_S11_OT4_01a", + "objectives": [ + { + "name": "Quest_S11_OT4_01a", + "count": 80 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_01b", + "templateId": "Quest:Quest_S11_OT4_01b", + "objectives": [ + { + "name": "Quest_S11_OT4_01b", + "count": 9 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_02", + "templateId": "Quest:Quest_S11_OT4_02", + "objectives": [ + { + "name": "Quest_S11_OT4_02_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_02_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_02_02", + "count": 1 + }, + { + "name": "Quest_S11_OT4_02_03", + "count": 1 + }, + { + "name": "Quest_S11_OT4_02_04", + "count": 1 + }, + { + "name": "Quest_S11_OT4_02_05", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_03", + "templateId": "Quest:Quest_S11_OT4_03", + "objectives": [ + { + "name": "Quest_S11_OT4_03_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_03_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_03_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_04", + "templateId": "Quest:Quest_S11_OT4_04", + "objectives": [ + { + "name": "Quest_S11_OT4_04_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_02", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_03", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_04", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_05", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_06", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_07", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_08", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_09", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_10", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_11", + "count": 1 + }, + { + "name": "Quest_S11_OT4_04_12", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_05", + "templateId": "Quest:Quest_S11_OT4_05", + "objectives": [ + { + "name": "Quest_S11_OT4_05_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_05_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_05_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_06", + "templateId": "Quest:Quest_S11_OT4_06", + "objectives": [ + { + "name": "Quest_S11_OT4_06", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_07", + "templateId": "Quest:Quest_S11_OT4_07", + "objectives": [ + { + "name": "Quest_S11_OT4_07_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_07_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_07_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_08", + "templateId": "Quest:Quest_S11_OT4_08", + "objectives": [ + { + "name": "Quest_S11_OT4_08_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_08_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_08_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_09", + "templateId": "Quest:Quest_S11_OT4_09", + "objectives": [ + { + "name": "Quest_S11_OT4_09_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_09_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_09_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_10", + "templateId": "Quest:Quest_S11_OT4_10", + "objectives": [ + { + "name": "Quest_S11_OT4_10", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_OT4_11", + "templateId": "Quest:Quest_S11_OT4_11", + "objectives": [ + { + "name": "Quest_S11_OT4_11_00", + "count": 1 + }, + { + "name": "Quest_S11_OT4_11_01", + "count": 1 + }, + { + "name": "Quest_S11_OT4_11_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_OT4" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "templateId": "Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_CatchWeapons_03", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_CatchWeapons_Prestige", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Damage_03", + "templateId": "Quest:Quest_S11_StretchGoals_Damage_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Damage_03", + "count": 5000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Damage_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Damage_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Damage_Prestige", + "count": 250000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Elim_03", + "templateId": "Quest:Quest_S11_StretchGoals_Elim_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Elim_03", + "count": 25 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Elim_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Elim_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Elim_Prestige", + "count": 1000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Outlast_03", + "templateId": "Quest:Quest_S11_StretchGoals_Outlast_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Outlast_03", + "count": 2000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Outlast_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Outlast_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Outlast_Prestige", + "count": 20000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "count": 150 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "count": 75 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_01", + "templateId": "Quest:Quest_S11_W01a_01", + "objectives": [ + { + "name": "s11_w01a_01_Visit_Location_BeachyBluffs", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_DirtyDocks", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_FrenzyFarm", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_HollyHedges", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_LazyLake", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_MountainMeadow", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_PowerPlant", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_SlurpySwamp", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_SunnyShores", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_WeepingWoods", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_RetailRow", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_SaltySprings", + "count": 1 + }, + { + "name": "s11_w01a_01_Visit_Location_PleasantPark", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_02", + "templateId": "Quest:Quest_S11_W01a_02", + "objectives": [ + { + "name": "quest_s11_w01a_02_elims_lazyormisty", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_03", + "templateId": "Quest:Quest_S11_W01a_03", + "objectives": [ + { + "name": "s11_w01a_03_visit_landmark_militarycamp_01", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_militarycamp_02", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_militarycamp_03", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_militarycamp_04", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_militarycamp_05", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_crashedairplane", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_angryapples", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_campcod", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_coralcove", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_lighthouse", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_fortruin", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_beachsidemansion", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_digsite", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bonfirecampsite", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_riskyreels", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_radiostation", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_scrapyard", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_powerdam", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_weatherstation", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_islandlodge", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_waterfallgorge", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_canoerentals", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_mountainvault", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_swampville", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_cliffsideruinedhouses", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_sawmill", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_pipeplayground", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_pipeperson", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_hayhillbilly", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_lawnmowerraces", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_shipwreckcove", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_tallestmountain", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_beachbus", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bobsbluff", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_buoyboat", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_chair", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_forkknifetruck", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_durrburgertruck", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_snowconetruck", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_pizzapetetruck", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_beachrentals", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_overgrownheads", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_loverslookout", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_toiletthrone", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_hatch_a", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_hatch_b", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_hatch_c", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bigbridge_blue", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bigbridge_red", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bigbridge_yellow", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bigbridge_green", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bigbridge_purple", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_captaincarpstruck", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_mountf8", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_mounth7", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_basecamphotel", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_basecampfoxtrot", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_basecampgolf", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_lazylakeisland", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_boatlaunch", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_crashedcargo", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_homelyhills", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_flopperpond", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_hilltophouse", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_stackshack", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_unremarkableshack", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_rapidsrest", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_stumpyridge", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_corruptedisland", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_bushface", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_mountaindanceclub", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_icechair", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_icehotel", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_toyfactory", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_iceblockfactory", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_crackshotscabin", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_galileosite1", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_galileosite2", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_galileosite3", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_galileosite4", + "count": 1 + }, + { + "name": "s11_w01a_03_visit_landmark_galileosite5", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_04", + "templateId": "Quest:Quest_S11_W01a_04", + "objectives": [ + { + "name": "quest_s11_w01a_04_ride_boat_dm", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_05", + "templateId": "Quest:Quest_S11_W01a_05", + "objectives": [ + { + "name": "quest_s11_w01a_05_damage_assaultrifles", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_06", + "templateId": "Quest:Quest_S11_W01a_06", + "objectives": [ + { + "name": "quest_s11_w01a_06_chests_sweaty_or_retail", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_07", + "templateId": "Quest:Quest_S11_W01a_07", + "objectives": [ + { + "name": "quest_s11_w01a_07_elims_different_matches", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_08", + "templateId": "Quest:Quest_S11_W01a_08", + "objectives": [ + { + "name": "quest_s11_w01a_08_catch_weapon", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_09", + "templateId": "Quest:Quest_S11_W01a_09", + "objectives": [ + { + "name": "quest_s11_w01a_09_damage_smg", + "count": 1 + }, + { + "name": "quest_s11_w01a_09_damage_shotgun", + "count": 1 + }, + { + "name": "quest_s11_w01a_09_damage_pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_10", + "templateId": "Quest:Quest_S11_W01a_10", + "objectives": [ + { + "name": "quest_s11_w01a_10_carry_dbno_10m", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01a_11", + "templateId": "Quest:Quest_S11_W01a_11", + "objectives": [ + { + "name": "quest_s11_w01a_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01A" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_01", + "templateId": "Quest:Quest_S11_W01b_01", + "objectives": [ + { + "name": "questobj_s11_w01b_q01_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_02", + "templateId": "Quest:Quest_S11_W01b_02", + "objectives": [ + { + "name": "questobj_s11_w01b_q02_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_03", + "templateId": "Quest:Quest_S11_W01b_03", + "objectives": [ + { + "name": "questobj_s11_w01b_q03_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_04", + "templateId": "Quest:Quest_S11_W01b_04", + "objectives": [ + { + "name": "questobj_s11_w01b_q04_obj01", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_05", + "templateId": "Quest:Quest_S11_W01b_05", + "objectives": [ + { + "name": "questobj_s11_w01b_q05_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_06", + "templateId": "Quest:Quest_S11_W01b_06", + "objectives": [ + { + "name": "questobj_s11_w01b_q06_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_07", + "templateId": "Quest:Quest_S11_W01b_07", + "objectives": [ + { + "name": "questobj_s11_w01b_q07_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_08", + "templateId": "Quest:Quest_S11_W01b_08", + "objectives": [ + { + "name": "questobj_s11_w01b_q08_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_09", + "templateId": "Quest:Quest_S11_W01b_09", + "objectives": [ + { + "name": "questobj_s11_w01b_q09_obj01", + "count": 150 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_10", + "templateId": "Quest:Quest_S11_W01b_10", + "objectives": [ + { + "name": "questobj_s11_w01b_q10_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w01b_q10_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w01b_q10_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W01b_11", + "templateId": "Quest:Quest_S11_W01b_11", + "objectives": [ + { + "name": "quest_s11_w01b_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_01B" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_01", + "templateId": "Quest:Quest_S11_W02_01", + "objectives": [ + { + "name": "questobj_s11_w02_q01_slurpy_or_retail", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_02", + "templateId": "Quest:Quest_S11_W02_02", + "objectives": [ + { + "name": "questobj_s11_w02_q02_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w02_q02_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w02_q02_obj03", + "count": 1 + }, + { + "name": "questobj_s11_w02_q02_obj04", + "count": 1 + }, + { + "name": "questobj_s11_w02_q02_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_03", + "templateId": "Quest:Quest_S11_W02_03", + "objectives": [ + { + "name": "questobj_s11_w02_q03_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_04", + "templateId": "Quest:Quest_S11_W02_04", + "objectives": [ + { + "name": "questobj_s11_w02_q04_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w02_q04_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w02_q04_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_05", + "templateId": "Quest:Quest_S11_W02_05", + "objectives": [ + { + "name": "questobj_s11_w02_q05_obj01", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_06", + "templateId": "Quest:Quest_S11_W02_06", + "objectives": [ + { + "name": "questobj_s11_w02_q06_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w02_q06_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w02_q06_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_07", + "templateId": "Quest:Quest_S11_W02_07", + "objectives": [ + { + "name": "questobj_s11_w02_q07_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_08", + "templateId": "Quest:Quest_S11_W02_08", + "objectives": [ + { + "name": "questobj_s11_w02_q08_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_09", + "templateId": "Quest:Quest_S11_W02_09", + "objectives": [ + { + "name": "questobj_s11_w02_q09_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_10", + "templateId": "Quest:Quest_S11_W02_10", + "objectives": [ + { + "name": "questobj_s11_w02_q10_obj01", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W02_11", + "templateId": "Quest:Quest_S11_W02_11", + "objectives": [ + { + "name": "quest_s11_w02_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_02" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_01", + "templateId": "Quest:Quest_S11_W03_01", + "objectives": [ + { + "name": "Quest_S11_W03_01_a", + "count": 1 + }, + { + "name": "Quest_S11_W03_01_b", + "count": 1 + }, + { + "name": "Quest_S11_W03_01_c", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_02", + "templateId": "Quest:Quest_S11_W03_02", + "objectives": [ + { + "name": "Quest_S11_W03_02_a", + "count": 500 + }, + { + "name": "Quest_S11_W03_02_b", + "count": 400 + }, + { + "name": "Quest_S11_W03_02_c", + "count": 300 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_03", + "templateId": "Quest:Quest_S11_W03_03", + "objectives": [ + { + "name": "Quest_S11_W03_03", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_04", + "templateId": "Quest:Quest_S11_W03_04", + "objectives": [ + { + "name": "Quest_S11_W03_04", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_05", + "templateId": "Quest:Quest_S11_W03_05", + "objectives": [ + { + "name": "Quest_S11_W03_05", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_06", + "templateId": "Quest:Quest_S11_W03_06", + "objectives": [ + { + "name": "Quest_S11_W03_06", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_07", + "templateId": "Quest:Quest_S11_W03_07", + "objectives": [ + { + "name": "Quest_S11_W03_07", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_08", + "templateId": "Quest:Quest_S11_W03_08", + "objectives": [ + { + "name": "Quest_S11_W03_08", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_09", + "templateId": "Quest:Quest_S11_W03_09", + "objectives": [ + { + "name": "Quest_S11_W03_09_000", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_001", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_002", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_003", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_004", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_005", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_006", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_007", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_008", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_009", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_010", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_011", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_012", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_013", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_014", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_015", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_016", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_017", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_018", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_019", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_020", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_021", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_022", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_023", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_024", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_025", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_026", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_027", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_028", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_029", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_030", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_031", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_032", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_033", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_034", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_035", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_036", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_037", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_038", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_039", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_040", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_041", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_042", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_043", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_044", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_045", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_046", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_047", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_048", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_049", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_050", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_051", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_052", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_053", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_054", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_055", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_056", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_057", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_058", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_059", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_060", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_061", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_062", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_063", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_064", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_065", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_066", + "count": 1 + }, + { + "name": "Quest_S11_W03_09_067", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_10", + "templateId": "Quest:Quest_S11_W03_10", + "objectives": [ + { + "name": "Quest_S11_W03_10", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W03_11", + "templateId": "Quest:Quest_S11_W03_11", + "objectives": [ + { + "name": "quest_s11_w03_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_03" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_01", + "templateId": "Quest:Quest_S11_W04_01", + "objectives": [ + { + "name": "questobj_s11_w04_q01_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_03", + "templateId": "Quest:Quest_S11_W04_03", + "objectives": [ + { + "name": "questobj_s11_w04_q03_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w04_q03_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w04_q03_obj03", + "count": 1 + }, + { + "name": "questobj_s11_w04_q03_obj04", + "count": 1 + }, + { + "name": "questobj_s11_w04_q03_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_04", + "templateId": "Quest:Quest_S11_W04_04", + "objectives": [ + { + "name": "questobj_s11_w04_q04_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_05", + "templateId": "Quest:Quest_S11_W04_05", + "objectives": [ + { + "name": "questobj_s11_w04_q05_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_06", + "templateId": "Quest:Quest_S11_W04_06", + "objectives": [ + { + "name": "questobj_s11_w04_q06_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj03", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj04", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj05", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj06", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj07", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj08", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj09", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj10", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj11", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj12", + "count": 1 + }, + { + "name": "questobj_s11_w04_q06_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_07", + "templateId": "Quest:Quest_S11_W04_07", + "objectives": [ + { + "name": "questobj_s11_w04_q07_obj01", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_08", + "templateId": "Quest:Quest_S11_W04_08", + "objectives": [ + { + "name": "questobj_s11_w04_q08_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_09", + "templateId": "Quest:Quest_S11_W04_09", + "objectives": [ + { + "name": "questobj_s11_w04_q09_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_10", + "templateId": "Quest:Quest_S11_W04_10", + "objectives": [ + { + "name": "questobj_s11_w04_q10_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_11", + "templateId": "Quest:Quest_S11_W04_11", + "objectives": [ + { + "name": "quest_s11_w04_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_06", + "templateId": "Quest:Quest_S11_W05_06", + "objectives": [ + { + "name": "Quest_S11_W05_06", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_04" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W04_02", + "templateId": "Quest:Quest_S11_W04_02", + "objectives": [ + { + "name": "questobj_s11_w04_q02_obj01", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_01", + "templateId": "Quest:Quest_S11_W05_01", + "objectives": [ + { + "name": "Quest_S11_W05_01", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_02", + "templateId": "Quest:Quest_S11_W05_02", + "objectives": [ + { + "name": "Quest_S11_W05_02_00", + "count": 1 + }, + { + "name": "Quest_S11_W05_02_01", + "count": 1 + }, + { + "name": "Quest_S11_W05_02_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_03", + "templateId": "Quest:Quest_S11_W05_03", + "objectives": [ + { + "name": "Quest_S11_W05_03", + "count": 1000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_04", + "templateId": "Quest:Quest_S11_W05_04", + "objectives": [ + { + "name": "Quest_S11_W05_04", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_05", + "templateId": "Quest:Quest_S11_W05_05", + "objectives": [ + { + "name": "Quest_S11_W05_05", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_07", + "templateId": "Quest:Quest_S11_W05_07", + "objectives": [ + { + "name": "Quest_S11_W05_07_01", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_02", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_03", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_04", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_05", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_06", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_07", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_08", + "count": 1 + }, + { + "name": "Quest_S11_W05_07_09", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_08", + "templateId": "Quest:Quest_S11_W05_08", + "objectives": [ + { + "name": "Quest_S11_W05_08", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_09", + "templateId": "Quest:Quest_S11_W05_09", + "objectives": [ + { + "name": "Quest_S11_W05_09_00", + "count": 1 + }, + { + "name": "Quest_S11_W05_09_01", + "count": 1 + }, + { + "name": "Quest_S11_W05_09_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_10", + "templateId": "Quest:Quest_S11_W05_10", + "objectives": [ + { + "name": "Quest_S11_W05_10", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W05_11", + "templateId": "Quest:Quest_S11_W05_11", + "objectives": [ + { + "name": "quest_s11_w05_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_05" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_01", + "templateId": "Quest:Quest_S11_W06_01", + "objectives": [ + { + "name": "questobj_s11_w06_q01_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_02", + "templateId": "Quest:Quest_S11_W06_02", + "objectives": [ + { + "name": "questobj_s11_w06_q02_obj02", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_03", + "templateId": "Quest:Quest_S11_W06_03", + "objectives": [ + { + "name": "questobj_s11_w06_q03_obj01", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_04", + "templateId": "Quest:Quest_S11_W06_04", + "objectives": [ + { + "name": "questobj_s11_w06_q04_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w06_q04_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w06_q04_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_05", + "templateId": "Quest:Quest_S11_W06_05", + "objectives": [ + { + "name": "questobj_s11_w06_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w06_q05_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w06_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_06", + "templateId": "Quest:Quest_S11_W06_06", + "objectives": [ + { + "name": "questobj_s11_w06_q06_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_07", + "templateId": "Quest:Quest_S11_W06_07", + "objectives": [ + { + "name": "questobj_s11_w06_q07_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj03", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj04", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj05", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj06", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj07", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj08", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj09", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj10", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj11", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj12", + "count": 1 + }, + { + "name": "questobj_s11_w06_q07_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_08", + "templateId": "Quest:Quest_S11_W06_08", + "objectives": [ + { + "name": "questobj_s11_w06_q08_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_09", + "templateId": "Quest:Quest_S11_W06_09", + "objectives": [ + { + "name": "questobj_s11_w06_q09_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_10", + "templateId": "Quest:Quest_S11_W06_10", + "objectives": [ + { + "name": "questobj_s11_w06_q10_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W06_11", + "templateId": "Quest:Quest_S11_W06_11", + "objectives": [ + { + "name": "quest_s11_w06_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_06" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_01", + "templateId": "Quest:Quest_S11_W07_01", + "objectives": [ + { + "name": "Quest_S11_W07_01", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_02", + "templateId": "Quest:Quest_S11_W07_02", + "objectives": [ + { + "name": "Quest_S11_W07_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_03", + "templateId": "Quest:Quest_S11_W07_03", + "objectives": [ + { + "name": "Quest_S11_W07_03", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_04", + "templateId": "Quest:Quest_S11_W07_04", + "objectives": [ + { + "name": "Quest_S11_W07_04", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_05", + "templateId": "Quest:Quest_S11_W07_05", + "objectives": [ + { + "name": "Quest_S11_W07_05", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_06", + "templateId": "Quest:Quest_S11_W07_06", + "objectives": [ + { + "name": "Quest_S11_W07_06_0", + "count": 1 + }, + { + "name": "Quest_S11_W07_06_1", + "count": 1 + }, + { + "name": "Quest_S11_W07_06_2", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_07", + "templateId": "Quest:Quest_S11_W07_07", + "objectives": [ + { + "name": "Quest_S11_W07_07", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_08", + "templateId": "Quest:Quest_S11_W07_08", + "objectives": [ + { + "name": "Quest_S11_W07_08_00", + "count": 1 + }, + { + "name": "Quest_S11_W07_08_01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_09", + "templateId": "Quest:Quest_S11_W07_09", + "objectives": [ + { + "name": "Quest_S11_W07_09", + "count": 300 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_10", + "templateId": "Quest:Quest_S11_W07_10", + "objectives": [ + { + "name": "Quest_S11_W07_10", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W07_11", + "templateId": "Quest:Quest_S11_W07_11", + "objectives": [ + { + "name": "quest_s11_w07_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_07" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_01", + "templateId": "Quest:Quest_S11_W08_01", + "objectives": [ + { + "name": "questobj_s11_w08_q01_obj01", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_02", + "templateId": "Quest:Quest_S11_W08_02", + "objectives": [ + { + "name": "questobj_s11_w08_q02_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_03", + "templateId": "Quest:Quest_S11_W08_03", + "objectives": [ + { + "name": "questobj_s11_w08_q03_obj01_timetrial_vehicle_lighthouse", + "count": 1 + }, + { + "name": "questobj_s11_w08_q03_obj02_timetrial_vehicle_centermap", + "count": 1 + }, + { + "name": "questobj_s11_w08_q03_obj03_timetrial_vehicle_waterfall", + "count": 1 + }, + { + "name": "questobj_s11_w08_q03_obj04_timetrial_vehicle_swamp", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_04", + "templateId": "Quest:Quest_S11_W08_04", + "objectives": [ + { + "name": "questobj_s11_w08_q04_obj01", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_05", + "templateId": "Quest:Quest_S11_W08_05", + "objectives": [ + { + "name": "questobj_s11_w08_q05_obj01", + "count": 1 + }, + { + "name": "questobj_s11_w08_q05_obj02", + "count": 1 + }, + { + "name": "questobj_s11_w08_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_06", + "templateId": "Quest:Quest_S11_W08_06", + "objectives": [ + { + "name": "questobj_s11_w08_q06_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_07", + "templateId": "Quest:Quest_S11_W08_07", + "objectives": [ + { + "name": "questobj_s11_w08_q07_obj01", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_08", + "templateId": "Quest:Quest_S11_W08_08", + "objectives": [ + { + "name": "questobj_s11_w08_q08_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_09", + "templateId": "Quest:Quest_S11_W08_09", + "objectives": [ + { + "name": "questobj_s11_w08_q09_obj01", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_10", + "templateId": "Quest:Quest_S11_W08_10", + "objectives": [ + { + "name": "questobj_s11_w08_q10_obj01", + "count": 500 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_W08_11", + "templateId": "Quest:Quest_S11_W08_11", + "objectives": [ + { + "name": "quest_s11_w08_11_search_hiddenletter_loadingscreen", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_Week_08" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "templateId": "Quest:Quest_S11_StretchGoals_CatchWeapons_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_CatchWeapons_03", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_CatchWeapons_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_CatchWeapons_Prestige", + "count": 250 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Damage_03", + "templateId": "Quest:Quest_S11_StretchGoals_Damage_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Damage_03", + "count": 5000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Damage_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Damage_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Damage_Prestige", + "count": 250000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Elim_03", + "templateId": "Quest:Quest_S11_StretchGoals_Elim_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Elim_03", + "count": 25 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Elim_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Elim_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Elim_Prestige", + "count": 1000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Outlast_03", + "templateId": "Quest:Quest_S11_StretchGoals_Outlast_03", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Outlast_03", + "count": 2000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Outlast_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Outlast_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Outlast_Prestige", + "count": 20000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Pistol_SMG_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Pistol_SMG_Specialist_Prestige", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Shotgun_Assault_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Shotgun_Assault_Specialist_Prestige", + "count": 150 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "templateId": "Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Sniper_Explosive_Specialist", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "templateId": "Quest:Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "objectives": [ + { + "name": "Quest_S11_StretchGoals_Sniper_Explosive_Specialist_Prestige", + "count": 75 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:MissionBundle_S11_StretchGoals2" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_01", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_01", + "objectives": [ + { + "name": "quest_br_collect_item_sm_01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_02", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_02", + "objectives": [ + { + "name": "quest_br_collect_item_sm_02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_03", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_03", + "objectives": [ + { + "name": "quest_br_collect_item_sm_03", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_04", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_04", + "objectives": [ + { + "name": "quest_br_collect_item_sm_04", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_05", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_05", + "objectives": [ + { + "name": "quest_br_collect_item_sm_05", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_06", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_06", + "objectives": [ + { + "name": "quest_br_collect_item_sm_06", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_07", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_07", + "objectives": [ + { + "name": "quest_br_collect_item_sm_07", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_08", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_08", + "objectives": [ + { + "name": "quest_br_collect_item_sm_08", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_09", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_09", + "objectives": [ + { + "name": "quest_br_collect_item_sm_09", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_10", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_10", + "objectives": [ + { + "name": "quest_br_collect_item_sm_10", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_11", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_11", + "objectives": [ + { + "name": "quest_br_collect_item_sm_11", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_12", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_12", + "objectives": [ + { + "name": "quest_br_collect_item_sm_12", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_13", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_13", + "objectives": [ + { + "name": "quest_br_collect_item_sm_13", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_14", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_14", + "objectives": [ + { + "name": "quest_br_collect_item_sm_14", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_15", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_15", + "objectives": [ + { + "name": "quest_br_collect_item_sm_15", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_16", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_16", + "objectives": [ + { + "name": "quest_br_collect_item_sm_16", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_17", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_17", + "objectives": [ + { + "name": "quest_br_collect_item_sm_17", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_18", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_18", + "objectives": [ + { + "name": "quest_br_collect_item_sm_18", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_19", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_19", + "objectives": [ + { + "name": "quest_br_collect_item_sm_19", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_20", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_20", + "objectives": [ + { + "name": "quest_br_collect_item_sm_20", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_21", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_21", + "objectives": [ + { + "name": "quest_br_collect_item_sm_21", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_22", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_22", + "objectives": [ + { + "name": "quest_br_collect_item_sm_22", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_23", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_23", + "objectives": [ + { + "name": "quest_br_collect_item_sm_23", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_24", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_24", + "objectives": [ + { + "name": "quest_br_collect_item_sm_24", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_25", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_25", + "objectives": [ + { + "name": "quest_br_collect_item_sm_25", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_26", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_26", + "objectives": [ + { + "name": "quest_br_collect_item_sm_26", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_27", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_27", + "objectives": [ + { + "name": "quest_br_collect_item_sm_27", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_28", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_28", + "objectives": [ + { + "name": "quest_br_collect_item_sm_28", + "count": 1 + }, + { + "name": "L.a,w.i,n.S,e.r,v.e,r", + "count": 21 + }, + { + "name": "L.a,w.i,n", + "count": 3 + }, + { + "name": "P.R,O.1,0.0,K.a,t.Y,T", + "count": 7 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_29", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_29", + "objectives": [ + { + "name": "quest_br_collect_item_sm_29", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_30", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_30", + "objectives": [ + { + "name": "quest_br_collect_item_sm_30", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_31", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_31", + "objectives": [ + { + "name": "quest_br_collect_item_sm_31", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_32", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_32", + "objectives": [ + { + "name": "quest_br_collect_item_sm_32", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_33", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_33", + "objectives": [ + { + "name": "quest_br_collect_item_sm_33", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_34", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_34", + "objectives": [ + { + "name": "quest_br_collect_item_sm_34", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_35", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_35", + "objectives": [ + { + "name": "quest_br_collect_item_sm_35", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_36", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_36", + "objectives": [ + { + "name": "quest_br_collect_item_sm_36", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_37", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_37", + "objectives": [ + { + "name": "quest_br_collect_item_sm_37", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_38", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_38", + "objectives": [ + { + "name": "quest_br_collect_item_sm_38", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_39", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_39", + "objectives": [ + { + "name": "quest_br_collect_item_sm_39", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_40", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_40", + "objectives": [ + { + "name": "quest_br_collect_item_sm_40", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_41", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_41", + "objectives": [ + { + "name": "quest_br_collect_item_sm_41", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_42", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_42", + "objectives": [ + { + "name": "quest_br_collect_item_sm_42", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_43", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_43", + "objectives": [ + { + "name": "quest_br_collect_item_sm_43", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_44", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_44", + "objectives": [ + { + "name": "quest_br_collect_item_sm_44", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_45", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_45", + "objectives": [ + { + "name": "quest_br_collect_item_sm_45", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_46", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_46", + "objectives": [ + { + "name": "quest_br_collect_item_sm_46", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_47", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_47", + "objectives": [ + { + "name": "quest_br_collect_item_sm_47", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_48", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_48", + "objectives": [ + { + "name": "quest_br_collect_item_sm_48", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_49", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_49", + "objectives": [ + { + "name": "quest_br_collect_item_sm_49", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_50", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_50", + "objectives": [ + { + "name": "quest_br_collect_item_sm_50", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_51", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_51", + "objectives": [ + { + "name": "quest_br_collect_item_sm_51", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_52", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_52", + "objectives": [ + { + "name": "quest_br_collect_item_sm_52", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_53", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_53", + "objectives": [ + { + "name": "quest_br_collect_item_sm_53", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_54", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_54", + "objectives": [ + { + "name": "quest_br_collect_item_sm_54", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_55", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_55", + "objectives": [ + { + "name": "quest_br_collect_item_sm_55", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_56", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_56", + "objectives": [ + { + "name": "quest_br_collect_item_sm_56", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_57", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_57", + "objectives": [ + { + "name": "quest_br_collect_item_sm_57", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_58", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_58", + "objectives": [ + { + "name": "quest_br_collect_item_sm_58", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_59", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_59", + "objectives": [ + { + "name": "quest_br_collect_item_sm_59", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_60", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_60", + "objectives": [ + { + "name": "quest_br_collect_item_sm_60", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_61", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_61", + "objectives": [ + { + "name": "quest_br_collect_item_sm_61", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_62", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_62", + "objectives": [ + { + "name": "quest_br_collect_item_sm_62", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_63", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_63", + "objectives": [ + { + "name": "quest_br_collect_item_sm_63", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_BR_ItemCollect_Coin_SM_64", + "templateId": "Quest:Quest_BR_ItemCollect_Coin_SM_64", + "objectives": [ + { + "name": "quest_br_collect_item_sm_64", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_CoinCollectXP" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_Chests_CornfieldForestTown", + "templateId": "Quest:Quest_FNM_S11_Chests_CornfieldForestTown", + "objectives": [ + { + "name": "fortnitemares_br_search_chests_farm", + "count": 1 + }, + { + "name": "fortnitemares_br_search_chests_forest", + "count": 1 + }, + { + "name": "fortnitemares_br_search_chests_ghosttown", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_Damage_DadBro_WS", + "templateId": "Quest:Quest_FNM_S11_Damage_DadBro_WS", + "objectives": [ + { + "name": "fortnitemares_br_damage_dadbro_ws", + "count": 10000 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_Defeat_DadBro", + "templateId": "Quest:Quest_FNM_S11_Defeat_DadBro", + "objectives": [ + { + "name": "fortnitemares_br_defeat_dadbro", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_HauntedItems", + "templateId": "Quest:Quest_FNM_S11_HauntedItems", + "objectives": [ + { + "name": "fortnitemares_br_destroy_haunted_items", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_Revives_DadBro", + "templateId": "Quest:Quest_FNM_S11_Revives_DadBro", + "objectives": [ + { + "name": "fortnitemares_br_revive_players_during_dadbro", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:Quest_FNM_S11_UnHide_NearEnemies", + "templateId": "Quest:Quest_FNM_S11_UnHide_NearEnemies", + "objectives": [ + { + "name": "fortnitemares_br_unhide_near_enemy", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_FNM" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_1", + "templateId": "Quest:quest_s11_galileo_banner_galileoferry_stage_1", + "objectives": [ + { + "name": "questobj_s11_galileo_banner_galileoferry_stage1", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_2", + "templateId": "Quest:quest_s11_galileo_banner_galileoferry_stage_2", + "objectives": [ + { + "name": "questobj_s11_galileo_banner_galileoferry_stage2", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_banner_galileoferry_stage_3", + "templateId": "Quest:quest_s11_galileo_banner_galileoferry_stage_3", + "objectives": [ + { + "name": "questobj_s11_galileo_banner_galileoferry_stage3", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_1", + "templateId": "Quest:quest_s11_galileo_blockdamage_lobster_stage_1", + "objectives": [ + { + "name": "questobj_s11_galileo_blockdamage_lobster_stage1", + "count": 50 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_2", + "templateId": "Quest:quest_s11_galileo_blockdamage_lobster_stage_2", + "objectives": [ + { + "name": "questobj_s11_galileo_blockdamage_lobster_stage2", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_blockdamage_lobster_stage_3", + "templateId": "Quest:quest_s11_galileo_blockdamage_lobster_stage_3", + "objectives": [ + { + "name": "questobj_s11_galileo_blockdamage_lobster_stage3", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_1", + "templateId": "Quest:quest_s11_galileo_dealdamage_bun_stage_1", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_bun_npc_or_player_stage1", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_2", + "templateId": "Quest:quest_s11_galileo_dealdamage_bun_stage_2", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_bun_npc_or_player_stage2", + "count": 300 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_bun_stage_3", + "templateId": "Quest:quest_s11_galileo_dealdamage_bun_stage_3", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_bun_npc_or_player_stage3", + "count": 400 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_1", + "templateId": "Quest:quest_s11_galileo_dealdamage_lobster_stage_1", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_lobster_stage1", + "count": 100 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_2", + "templateId": "Quest:quest_s11_galileo_dealdamage_lobster_stage_2", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_lobster_stage2", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_dealdamage_lobster_stage_3", + "templateId": "Quest:quest_s11_galileo_dealdamage_lobster_stage_3", + "objectives": [ + { + "name": "questobj_s11_galileo_dealdamage_lobster_stage3", + "count": 300 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_1", + "templateId": "Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_1", + "objectives": [ + { + "name": "questobj_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage1", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_2", + "templateId": "Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_2", + "objectives": [ + { + "name": "questobj_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage2", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_3", + "templateId": "Quest:quest_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage_3", + "objectives": [ + { + "name": "questobj_s11_galileo_eliminations_npcgalileo_lobster_or_100m_stage3", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_stage1tokens", + "templateId": "Quest:quest_s11_galileo_stage1tokens", + "objectives": [ + { + "name": "questobj_s11_galileo_stage1tokens", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_stage2tokens", + "templateId": "Quest:quest_s11_galileo_stage2tokens", + "objectives": [ + { + "name": "questobj_s11_galileo_stage2tokens", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:quest_s11_galileo_stage3tokens", + "templateId": "Quest:quest_s11_galileo_stage3tokens", + "objectives": [ + { + "name": "questobj_s11_galileo_stage3tokens", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_Galileo" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_01", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_01", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Damage_Opponent_SnowballLauncher", + "templateId": "Quest:Quest_S11_Winterfest_Damage_Opponent_SnowballLauncher", + "objectives": [ + { + "name": "quest_s11_winterfest_damage_opponent_snowballlauncher", + "count": 200 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_02", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_02", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_02_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Stoke_Campfire", + "templateId": "Quest:Quest_S11_Winterfest_Stoke_Campfire", + "objectives": [ + { + "name": "quest_s11_winterfest_stoke_campfire", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_03", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_03", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_03_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Eliminate_UnvaultedWeapon", + "templateId": "Quest:Quest_S11_Winterfest_Eliminate_UnvaultedWeapon", + "objectives": [ + { + "name": "quest_s11_winterfest_elimination_unvaultedweapons", + "count": 5 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_04", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_04", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_04_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Hide_SneakySnowman", + "templateId": "Quest:Quest_S11_Winterfest_Hide_SneakySnowman", + "objectives": [ + { + "name": "quest_s11_winterfest_hide_sneakysnowmen", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_05", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_05", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_05_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_Warmself", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_Warmself", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_warmself", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_06", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_06", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_06_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Emote_HolidayTrees", + "templateId": "Quest:Quest_S11_Winterfest_Emote_HolidayTrees", + "objectives": [ + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj01", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj02", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj03", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj04", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj05", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj06", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj07", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj08", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj09", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj10", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj11", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj12", + "count": 1 + }, + { + "name": "quest_s11_winterfest_emote_holidaytrees_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_07", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_07", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_07_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Search_Chest_60secsBattlebus", + "templateId": "Quest:Quest_S11_Winterfest_Search_Chest_60secsBattlebus", + "objectives": [ + { + "name": "quest_s11_winterfest_search_chest_60secbattlebus", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_08", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_08", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_08_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Use_Presents", + "templateId": "Quest:Quest_S11_Winterfest_Use_Presents", + "objectives": [ + { + "name": "quest_s11_winterfest_use_presents", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_09", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_09", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_09_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Open_FrozenLoot", + "templateId": "Quest:Quest_S11_Winterfest_Open_FrozenLoot", + "objectives": [ + { + "name": "quest_s11_winterfest_open_frozenloot", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_10", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_10", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_10_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Damage_Opponent_Coal", + "templateId": "Quest:Quest_S11_Winterfest_Damage_Opponent_Coal", + "objectives": [ + { + "name": "quest_s11_winterfest_damage_opponent_coal", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_11", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_11", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_11_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Destroy_Snowman_Lobster", + "templateId": "Quest:Quest_S11_Winterfest_Destroy_Snowman_Lobster", + "objectives": [ + { + "name": "quest_s11_winterfest_destroy_snowman_lobster", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_12", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_12", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_12_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Destroy_Snowflake", + "templateId": "Quest:Quest_S11_Winterfest_Destroy_Snowflake", + "objectives": [ + { + "name": "quest_s11_winterfest_destroy_snowflake", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_13", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_13", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_13_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Use_IceMachines", + "templateId": "Quest:Quest_S11_Winterfest_Use_IceMachines", + "objectives": [ + { + "name": "quest_s11_winterfest_use_icemachines", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_14", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_14", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_14_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Visit_CrackshotsCabin_ToyFactory_IceFactory", + "templateId": "Quest:Quest_S11_Winterfest_Visit_CrackshotsCabin_ToyFactory_IceFactory", + "objectives": [ + { + "name": "quest_s11_winterfest_vist_crackshotscabin_toyfactory_icefactory_obj1", + "count": 1 + }, + { + "name": "quest_s11_winterfest_vist_crackshotscabin_toyfactory_icefactory_obj2", + "count": 1 + }, + { + "name": "quest_s11_winterfest_vist_crackshotscabin_toyfactory_icefactory_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_15", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_15", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_15_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Light_FrozenFireworks", + "templateId": "Quest:Quest_S11_Winterfest_Light_FrozenFireworks", + "objectives": [ + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj01", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj02", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj03", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj04", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj05", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj06", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj07", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj08", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj09", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj10", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj11", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj12", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj13", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj14", + "count": 1 + }, + { + "name": "quest_s11_winterfest_light_frozenfireworks_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Crackshot_16", + "templateId": "Quest:Quest_S11_Winterfest_Crackshot_16", + "objectives": [ + { + "name": "quest_s11_winterfest_crackshot_16_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Winterfest_Search_Ammo_Icehotel_Icechair", + "templateId": "Quest:Quest_S11_Winterfest_Search_Ammo_Icehotel_Icechair", + "objectives": [ + { + "name": "quest_s11_winterfest_search_rammo_icehotel_icechair", + "count": 2 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_Event_S11_Winterfest" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_01", + "templateId": "Quest:Quest_S11_Unfused_01", + "objectives": [ + { + "name": "questobj_s11_unfused_q01_obj01", + "count": 4 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_02", + "templateId": "Quest:Quest_S11_Unfused_02", + "objectives": [ + { + "name": "questobj_s11_unfused_q02_obj01", + "count": 4 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_03", + "templateId": "Quest:Quest_S11_Unfused_03", + "objectives": [ + { + "name": "questobj_s11_unfused_q03_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_04", + "templateId": "Quest:Quest_S11_Unfused_04", + "objectives": [ + { + "name": "questobj_s11_unfused_q04_obj01", + "count": 1 + }, + { + "name": "questobj_s11_unfused_q04_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_05", + "templateId": "Quest:Quest_S11_Unfused_05", + "objectives": [ + { + "name": "questobj_s11_unfused_q05_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_06", + "templateId": "Quest:Quest_S11_Unfused_06", + "objectives": [ + { + "name": "questobj_s11_unfused_q06_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_07", + "templateId": "Quest:Quest_S11_Unfused_07", + "objectives": [ + { + "name": "questobj_s11_unfused_q07_obj01", + "count": 25 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_08", + "templateId": "Quest:Quest_S11_Unfused_08", + "objectives": [ + { + "name": "questobj_s11_unfused_q08_obj01", + "count": 3 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_09_Carry_Teammate_Storm", + "templateId": "Quest:Quest_S11_Unfused_09_Carry_Teammate_Storm", + "objectives": [ + { + "name": "questobj_s11_unfused_q09_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + }, + { + "itemGuid": "S11-Quest:Quest_S11_Unfused_10_Throw_Enemy_FallDamage", + "templateId": "Quest:Quest_S11_Unfused_10_Throw_Enemy_FallDamage", + "objectives": [ + { + "name": "questobj_s11_unfused_q10_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S11-ChallengeBundle:QuestBundle_S11_Unfused" + } ] }, - { - "templateId": "Quest:Daily_High_Priority", - "objectives": [ - "questcollect_survivoritemdata" + "Season12": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S12-ChallengeBundleSchedule:Schedule_LTM_S12_SpyGames", + "templateId": "ChallengeBundleSchedule:Schedule_LTM_S12_SpyGames", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_S12_SpyGames" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule", + "templateId": "ChallengeBundleSchedule:Season12_ABChallenges_Schedule", + "granted_bundles": [ + "S12-ChallengeBundle:MissionBundle_S12_AB_Skulldude", + "S12-ChallengeBundle:MissionBundle_S12_AB_TNTina", + "S12-ChallengeBundle:MissionBundle_S12_AB_Meowscle", + "S12-ChallengeBundle:MissionBundle_S12_AB_AdventureGirl", + "S12-ChallengeBundle:MissionBundle_S12_AB_Midas", + "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_DonutYachtChallenge_Schedule", + "templateId": "ChallengeBundleSchedule:Season12_DonutYachtChallenge_Schedule", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_S12_Donut_YachtChallenge" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule", + "templateId": "ChallengeBundleSchedule:Season12_Donut_Schedule", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_S12_Donut_W1", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W2", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W3", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W4", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W5", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W6", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W7", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W8", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W9", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_Dummy", + "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_A_ToastForInGame" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season12_Feat_BundleSchedule", + "granted_bundles": [ + "S12-ChallengeBundle:Season12_Feat_Bundle" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Jerky_Schedule", + "templateId": "ChallengeBundleSchedule:Season12_Jerky_Schedule", + "granted_bundles": [ + "S12-ChallengeBundle:MissionBundle_S12_Jerky" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season12_Mission_Schedule", + "granted_bundles": [ + "S12-ChallengeBundle:MissionBundle_S12_Week_01", + "S12-ChallengeBundle:MissionBundle_S12_Week_02", + "S12-ChallengeBundle:MissionBundle_S12_Week_03", + "S12-ChallengeBundle:MissionBundle_S12_Week_04", + "S12-ChallengeBundle:MissionBundle_S12_Week_05", + "S12-ChallengeBundle:MissionBundle_S12_Week_06", + "S12-ChallengeBundle:MissionBundle_S12_Week_07", + "S12-ChallengeBundle:MissionBundle_S12_Week_08", + "S12-ChallengeBundle:MissionBundle_S12_Week_09", + "S12-ChallengeBundle:MissionBundle_S12_Week_10", + "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01", + "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect", + "templateId": "ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09", + "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_Oro", + "templateId": "ChallengeBundleSchedule:Season12_Schedule_Event_Oro", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_S12_Oro" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_PeelySpy", + "templateId": "ChallengeBundleSchedule:Season12_Schedule_Event_PeelySpy", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_Event_S12_PeelySpy" + ] + }, + { + "itemGuid": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_StormTheAgency", + "templateId": "ChallengeBundleSchedule:Season12_Schedule_Event_StormTheAgency", + "granted_bundles": [ + "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_SpyGames", + "templateId": "ChallengeBundle:QuestBundle_S12_SpyGames", + "grantedquestinstanceids": [ + "S12-Quest:quest_operation_winmatch", + "S12-Quest:quest_operation_damageplayers", + "S12-Quest:quest_operation_eliminateplayers" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Schedule_LTM_S12_SpyGames" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_AB_AdventureGirl", + "templateId": "ChallengeBundle:MissionBundle_S12_AB_AdventureGirl", + "grantedquestinstanceids": [ + "S12-Quest:quest_AB_photographer_alter", + "S12-Quest:quest_AB_photographer_ego" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_AB_Meowscle", + "templateId": "ChallengeBundle:MissionBundle_S12_AB_Meowscle", + "grantedquestinstanceids": [ + "S12-Quest:quest_ab_buffcat_alter", + "S12-Quest:quest_ab_buffcat_ego" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_AB_Midas", + "templateId": "ChallengeBundle:MissionBundle_S12_AB_Midas", + "grantedquestinstanceids": [ + "S12-Quest:quest_ab_midas_alter", + "S12-Quest:quest_ab_midas_ego" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_AB_Skulldude", + "templateId": "ChallengeBundle:MissionBundle_S12_AB_Skulldude", + "grantedquestinstanceids": [ + "S12-Quest:quest_AB_skulldude_alter", + "S12-Quest:quest_AB_skulldude_ego" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_AB_TNTina", + "templateId": "ChallengeBundle:MissionBundle_S12_AB_TNTina", + "grantedquestinstanceids": [ + "S12-Quest:AB_tntina_alter", + "S12-Quest:AB_tntina_ego" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Superlevel", + "templateId": "ChallengeBundle:MissionBundle_S12_Superlevel", + "grantedquestinstanceids": [ + "S12-Quest:quest_style_superlevel_bananaAgent", + "S12-Quest:quest_style_superlevel_buffcat", + "S12-Quest:quest_style_superlevel_midas", + "S12-Quest:quest_style_superlevel_photographer", + "S12-Quest:quest_style_superlevel_skulldude", + "S12-Quest:quest_style_superlevel_TNTina" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_ABChallenges_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_YachtChallenge", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_YachtChallenge", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_YachtChallenge" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_DonutYachtChallenge_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W1", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W1", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W1_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W1_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W2", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W2", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W2_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W2_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W3", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W3", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W3_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W3_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W4", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W4", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W4_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W4_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W5", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W5", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W5_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W5_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W6", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W6", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W6_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W6_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W7", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W7_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W7_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_A_ToastForInGame", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W7_A_ToastForInGame", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W7_A_ToastForInGame" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_Dummy", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W7_Dummy", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W7_Dummy" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W8", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W8", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W8_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W8_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Donut_W9", + "templateId": "ChallengeBundle:QuestBundle_S12_Donut_W9", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_Donut_W9_A" + ], + "questStages": [ + "S12-Quest:Quest_S12_Donut_W9_B" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Donut_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:Season12_Feat_Bundle", + "templateId": "ChallengeBundle:Season12_Feat_Bundle", + "grantedquestinstanceids": [ + "S12-Quest:Feat_Season12_BandageInStorm", + "S12-Quest:Feat_Season12_PetPet", + "S12-Quest:Feat_Season12_WinDuos", + "S12-Quest:Feat_Season12_WinSolos", + "S12-Quest:Feat_Season12_WinSquads", + "S12-Quest:Feat_Season12_HarvestWoodSingleMatch", + "S12-Quest:Feat_Season12_HarvestStoneSingleMatch", + "S12-Quest:Feat_Season12_HarvestMetalSingleMatch", + "S12-Quest:Feat_Season12_UseMedkitAt1HP", + "S12-Quest:Feat_Season12_KillAfterOpeningSupplyDrop", + "S12-Quest:Feat_Season12_Lifeguard", + "S12-Quest:Feat_Season12_DestroyHollyHedges", + "S12-Quest:Feat_Season12_DestroyFishstickDecorations", + "S12-Quest:Feat_Season12_EliminateOpponentsPowerPlant", + "S12-Quest:Feat_Season12_GainShieldSlurpySwamp", + "S12-Quest:Feat_Season12_CatchFishSunnyShores", + "S12-Quest:Feat_Season12_LandSalty", + "S12-Quest:Feat_Season12_WinSoloManyElims", + "S12-Quest:Feat_Season12_EliminateTrapMountainMeadows", + "S12-Quest:Feat_Season12_RevivedInFrenzyFarmBarn", + "S12-Quest:Feat_Season12_EatFlooper", + "S12-Quest:Feat_Season12_EatFlopper", + "S12-Quest:Feat_Season12_EatManyFlopper", + "S12-Quest:Feat_Season12_EliminateWaterSMG", + "S12-Quest:Feat_Season12_WinSolos10", + "S12-Quest:Feat_Season12_WinSolos100", + "S12-Quest:Feat_Season12_WinDuos10", + "S12-Quest:Feat_Season12_WinDuos100", + "S12-Quest:Feat_Season12_WinSquads10", + "S12-Quest:Feat_Season12_WinSquads100", + "S12-Quest:Feat_Season12_WinTeamRumble", + "S12-Quest:Feat_Season12_WinTeamRumble100", + "S12-Quest:Feat_Season12_ReachLevel110", + "S12-Quest:Feat_Season12_ReachLevel250", + "S12-Quest:Feat_Season12_CompleteMission", + "S12-Quest:Feat_Season12_CompleteAllMissions", + "S12-Quest:Feat_Season12_CatchFishBucketNice", + "S12-Quest:Feat_Season12_DeathBucketNice", + "S12-Quest:Feat_Season12_EliminateBucketNice", + "S12-Quest:Feat_Season12_EliminateRocketRiding", + "S12-Quest:Feat_Season12_ScoreSoccerGoalPleasant", + "S12-Quest:Feat_Season12_HideDumpster", + "S12-Quest:Feat_Season12_EliminateHarvestingTool", + "S12-Quest:Feat_Season12_EliminateAfterHarpoonPull", + "S12-Quest:Feat_Season12_EliminateYeetFallDamage", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_2", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_3", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_4", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_5", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_6", + "S12-Quest:quest_s12_feat_accolade_weaponspecialist_samematch_7", + "S12-Quest:quest_s12_feat_collect_weapon_legendary_oilrig", + "S12-Quest:quest_s12_feat_destroy_strawman", + "S12-Quest:quest_s12_feat_fishing_explosives", + "S12-Quest:quest_s12_feat_fishing_singlematch", + "S12-Quest:quest_s12_feat_interact_booth", + "S12-Quest:quest_s12_feat_interact_booth_25", + "S12-Quest:quest_s12_feat_interact_booth_100", + "S12-Quest:quest_s12_feat_interact_coolcarpet_buffcat", + "S12-Quest:quest_s12_feat_interact_passage", + "S12-Quest:quest_s12_feat_interact_passage_25", + "S12-Quest:quest_s12_feat_interact_passage_100", + "S12-Quest:quest_s12_feat_interact_vaultdoor", + "S12-Quest:quest_s12_feat_interrogate_mang", + "S12-Quest:quest_s12_feat_interrogate_opponent", + "S12-Quest:quest_s12_feat_interrogate_opponent10", + "S12-Quest:quest_s12_feat_kill_gliding", + "S12-Quest:quest_s12_feat_use_slurpfish_many", + "S12-Quest:quests_s12_feat_reachlevel_gold_bananaagent", + "S12-Quest:quests_s12_feat_reachlevel_gold_buffcat", + "S12-Quest:quests_s12_feat_reachlevel_gold_henchman", + "S12-Quest:quests_s12_feat_reachlevel_gold_tntina", + "S12-Quest:quests_s12_feat_reachlevel_gold_midas", + "S12-Quest:quests_s12_feat_reachlevel_gold_photograph", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_ar", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_explosive", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_pickaxe", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_pistol", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_shotgun", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_smg", + "S12-Quest:quest_s12_feat_accolade_weaponexpert_sniper", + "S12-Quest:quest_s12_feat_interact_vaultdoor_25", + "S12-Quest:quest_s12_feat_interact_vaultdoor_buffcat", + "S12-Quest:quest_s12_feat_throw_consumable", + "S12-Quest:quest_s12_feat_emote_tpose_yacht", + "S12-Quest:quest_s12_feat_kill_yacht_pickaxe", + "S12-Quest:quest_s12_feat_land_sharkrock", + "S12-Quest:quest_s12_feat_visit_sharkrock_boat", + "S12-Quest:quest_s12_feat_kill_swamp_singlematch", + "S12-Quest:quest_s12_feat_killmang_oilrig", + "S12-Quest:quest_s12_feat_athenarank_infiltration", + "S12-Quest:quest_s12_feat_disguise_infiltration", + "S12-Quest:quest_s12_feat_interact_hoagie", + "S12-Quest:quest_s12_feat_win_dropzone", + "S12-Quest:quest_s12_feat_win_dropzone_many", + "S12-Quest:quest_s12_feat_win_knockout", + "S12-Quest:quest_s12_feat_win_knockout_many", + "S12-Quest:quest_s12_feat_blockdamage_unclebrolly", + "S12-Quest:quest_s12_feat_damage_unclebrolly", + "S12-Quest:quest_s12_feat_destroy_hoagie_mistybop", + "S12-Quest:quest_s12_feat_destroy_wall_donut", + "S12-Quest:quest_s12_feat_emote_donut", + "S12-Quest:quest_s12_feat_land_jerky", + "S12-Quest:quest_s12_feat_emote_jerky", + "S12-Quest:quest_s12_feat_bvg_battle", + "S12-Quest:quest_s12_feat_bvg_truce", + "S12-Quest:quest_s12_feat_locationdomination" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Feat_BundleSchedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Jerky", + "templateId": "ChallengeBundle:MissionBundle_S12_Jerky", + "grantedquestinstanceids": [ + "S12-Quest:quest_jerky_dance", + "S12-Quest:quest_jerky_bounce", + "S12-Quest:quest_jerky_visit" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Jerky_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01", + "templateId": "ChallengeBundle:MissionBundle_S12_LocationDomination_01", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_locationdomination_w1_q01a", + "S12-Quest:quest_s12_locationdomination_w1_q02a", + "S12-Quest:quest_s12_locationdomination_w1_q03a", + "S12-Quest:quest_s12_locationdomination_w1_q04a", + "S12-Quest:quest_s12_locationdomination_w1_q05a", + "S12-Quest:quest_s12_locationdomination_w1_q06a", + "S12-Quest:quest_s12_locationdomination_w1_q07a", + "S12-Quest:quest_s12_locationdomination_w1_q08a", + "S12-Quest:quest_s12_locationdomination_w1_q09a", + "S12-Quest:quest_s12_locationdomination_w1_q10a" + ], + "questStages": [ + "S12-Quest:quest_s12_locationdomination_w1_q01b", + "S12-Quest:quest_s12_locationdomination_w1_q01c", + "S12-Quest:quest_s12_locationdomination_w1_q02b", + "S12-Quest:quest_s12_locationdomination_w1_q02c", + "S12-Quest:quest_s12_locationdomination_w1_q03b", + "S12-Quest:quest_s12_locationdomination_w1_q03c", + "S12-Quest:quest_s12_locationdomination_w1_q04b", + "S12-Quest:quest_s12_locationdomination_w1_q04c", + "S12-Quest:quest_s12_locationdomination_w1_q05b", + "S12-Quest:quest_s12_locationdomination_w1_q05c", + "S12-Quest:quest_s12_locationdomination_w1_q06b", + "S12-Quest:quest_s12_locationdomination_w1_q06c", + "S12-Quest:quest_s12_locationdomination_w1_q07b", + "S12-Quest:quest_s12_locationdomination_w1_q07c", + "S12-Quest:quest_s12_locationdomination_w1_q08b", + "S12-Quest:quest_s12_locationdomination_w1_q08c", + "S12-Quest:quest_s12_locationdomination_w1_q09b", + "S12-Quest:quest_s12_locationdomination_w1_q09c", + "S12-Quest:quest_s12_locationdomination_w1_q10b", + "S12-Quest:quest_s12_locationdomination_w1_q10c" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02", + "templateId": "ChallengeBundle:MissionBundle_S12_LocationDomination_02", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_locationdomination_w2_q01a", + "S12-Quest:quest_s12_locationdomination_w2_q02a", + "S12-Quest:quest_s12_locationdomination_w2_q03a", + "S12-Quest:quest_s12_locationdomination_w2_q04a", + "S12-Quest:quest_s12_locationdomination_w2_q05a", + "S12-Quest:quest_s12_locationdomination_w2_q06a", + "S12-Quest:quest_s12_locationdomination_w2_q07a", + "S12-Quest:quest_s12_locationdomination_w2_q08a", + "S12-Quest:quest_s12_locationdomination_w2_q09a", + "S12-Quest:quest_s12_locationdomination_w2_q10a" + ], + "questStages": [ + "S12-Quest:quest_s12_locationdomination_w2_q01b", + "S12-Quest:quest_s12_locationdomination_w2_q01c", + "S12-Quest:quest_s12_locationdomination_w2_q02b", + "S12-Quest:quest_s12_locationdomination_w2_q02c", + "S12-Quest:quest_s12_locationdomination_w2_q03b", + "S12-Quest:quest_s12_locationdomination_w2_q03c", + "S12-Quest:quest_s12_locationdomination_w2_q04b", + "S12-Quest:quest_s12_locationdomination_w2_q04c", + "S12-Quest:quest_s12_locationdomination_w2_q05b", + "S12-Quest:quest_s12_locationdomination_w2_q05c", + "S12-Quest:quest_s12_locationdomination_w2_q06b", + "S12-Quest:quest_s12_locationdomination_w2_q06c", + "S12-Quest:quest_s12_locationdomination_w2_q07b", + "S12-Quest:quest_s12_locationdomination_w2_q07c", + "S12-Quest:quest_s12_locationdomination_w2_q08b", + "S12-Quest:quest_s12_locationdomination_w2_q08c", + "S12-Quest:quest_s12_locationdomination_w2_q09b", + "S12-Quest:quest_s12_locationdomination_w2_q09c", + "S12-Quest:quest_s12_locationdomination_w2_q10b", + "S12-Quest:quest_s12_locationdomination_w2_q10c" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_01", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w1_q01", + "S12-Quest:quest_s12_w1_q02", + "S12-Quest:quest_s12_w1_q03", + "S12-Quest:quest_s12_w1_q04", + "S12-Quest:quest_s12_w1_q05", + "S12-Quest:quest_s12_w1_q06", + "S12-Quest:quest_s12_w1_q07", + "S12-Quest:quest_s12_w1_q08", + "S12-Quest:quest_s12_w1_q09", + "S12-Quest:quest_s12_w1_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_02", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w2_q01", + "S12-Quest:quest_s12_w2_q02", + "S12-Quest:quest_s12_w2_q03", + "S12-Quest:quest_s12_w2_q04", + "S12-Quest:quest_s12_w2_q05", + "S12-Quest:quest_s12_w2_q06", + "S12-Quest:quest_s12_w2_q07", + "S12-Quest:quest_s12_w2_q08", + "S12-Quest:quest_s12_w2_q09", + "S12-Quest:quest_s12_w2_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_03", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w3_q01", + "S12-Quest:quest_s12_w3_q02", + "S12-Quest:quest_s12_w3_q03", + "S12-Quest:quest_s12_w3_q04", + "S12-Quest:quest_s12_w3_q05", + "S12-Quest:quest_s12_w3_q06", + "S12-Quest:quest_s12_w3_q07", + "S12-Quest:quest_s12_w3_q08", + "S12-Quest:quest_s12_w3_q09", + "S12-Quest:quest_s12_w3_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_04", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w4_q01", + "S12-Quest:quest_s12_w4_q02", + "S12-Quest:quest_s12_w4_q03", + "S12-Quest:quest_s12_w4_q04", + "S12-Quest:quest_s12_w4_q05", + "S12-Quest:quest_s12_w4_q06", + "S12-Quest:quest_s12_w4_q07", + "S12-Quest:quest_s12_w4_q08", + "S12-Quest:quest_s12_w4_q09", + "S12-Quest:quest_s12_w4_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_05", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w5_q01", + "S12-Quest:quest_s12_w5_q02", + "S12-Quest:quest_s12_w5_q03", + "S12-Quest:quest_s12_w5_q04", + "S12-Quest:quest_s12_w5_q05", + "S12-Quest:quest_s12_w5_q06", + "S12-Quest:quest_s12_w5_q07", + "S12-Quest:quest_s12_w5_q08", + "S12-Quest:quest_s12_w5_q09", + "S12-Quest:quest_s12_w5_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_06", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w6_q01", + "S12-Quest:quest_s12_w6_q02", + "S12-Quest:quest_s12_w6_q03", + "S12-Quest:quest_s12_w6_q04", + "S12-Quest:quest_s12_w6_q05", + "S12-Quest:quest_s12_w6_q06", + "S12-Quest:quest_s12_w6_q07", + "S12-Quest:quest_s12_w6_q08", + "S12-Quest:quest_s12_w6_q09", + "S12-Quest:quest_s12_w6_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_07", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w7_q01", + "S12-Quest:quest_s12_w7_q02", + "S12-Quest:quest_s12_w7_q03", + "S12-Quest:Quest_s12_w7_q04_HarvestAfterLanding", + "S12-Quest:quest_s12_w7_q05", + "S12-Quest:quest_s12_w7_q06", + "S12-Quest:quest_s12_w7_q07", + "S12-Quest:quest_s12_w7_q08", + "S12-Quest:quest_s12_w7_q09", + "S12-Quest:quest_s12_w7_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_08", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w8_q01", + "S12-Quest:quest_s12_w8_q02", + "S12-Quest:quest_s12_w8_q03", + "S12-Quest:quest_s12_w8_q04", + "S12-Quest:quest_s12_w8_q05", + "S12-Quest:quest_s12_w8_q06", + "S12-Quest:quest_s12_w8_q07", + "S12-Quest:quest_s12_w8_q08", + "S12-Quest:quest_s12_w8_q09", + "S12-Quest:quest_s12_w8_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_09", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w9_q01", + "S12-Quest:quest_s12_w9_q02", + "S12-Quest:quest_s12_w9_q03", + "S12-Quest:quest_s12_w9_q04", + "S12-Quest:quest_s12_w9_q05", + "S12-Quest:quest_s12_w9_q06", + "S12-Quest:quest_s12_w9_q07", + "S12-Quest:quest_s12_w9_q08", + "S12-Quest:quest_s12_w9_q09", + "S12-Quest:quest_s12_w9_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:MissionBundle_S12_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S12_Week_10", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_w10_q01", + "S12-Quest:quest_s12_w10_q02", + "S12-Quest:quest_s12_w10_q03", + "S12-Quest:quest_s12_w10_q04", + "S12-Quest:quest_s12_w10_q05", + "S12-Quest:quest_s12_w10_q06", + "S12-Quest:quest_s12_w10_q07", + "S12-Quest:quest_s12_w10_q08", + "S12-Quest:quest_s12_w10_q09", + "S12-Quest:quest_s12_w10_q10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Mission_Schedule" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w1", + "S12-Quest:quest_s12_xpcoins_gold_w1", + "S12-Quest:quest_s12_xpcoins_green_w1", + "S12-Quest:quest_s12_xpcoins_purple_w1" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w2", + "S12-Quest:quest_s12_xpcoins_green_w2", + "S12-Quest:quest_s12_xpcoins_purple_w2" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w3", + "S12-Quest:quest_s12_xpcoins_gold_w3", + "S12-Quest:quest_s12_xpcoins_green_w3", + "S12-Quest:quest_s12_xpcoins_purple_w3" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w4", + "S12-Quest:quest_s12_xpcoins_green_w4", + "S12-Quest:quest_s12_xpcoins_purple_w4" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w5", + "S12-Quest:quest_s12_xpcoins_gold_w5", + "S12-Quest:quest_s12_xpcoins_green_w5", + "S12-Quest:quest_s12_xpcoins_purple_w5" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w6", + "S12-Quest:quest_s12_xpcoins_green_w6", + "S12-Quest:quest_s12_xpcoins_purple_w6" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w7", + "S12-Quest:quest_s12_xpcoins_gold_w7", + "S12-Quest:quest_s12_xpcoins_green_w7", + "S12-Quest:quest_s12_xpcoins_purple_w7" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w8", + "S12-Quest:quest_s12_xpcoins_green_w8", + "S12-Quest:quest_s12_xpcoins_purple_w8" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w9", + "S12-Quest:quest_s12_xpcoins_gold_w9", + "S12-Quest:quest_s12_xpcoins_green_w9", + "S12-Quest:quest_s12_xpcoins_purple_w9" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10", + "grantedquestinstanceids": [ + "S12-Quest:quest_s12_xpcoins_blue_w10", + "S12-Quest:quest_s12_xpcoins_green_w10", + "S12-Quest:quest_s12_xpcoins_purple_w10" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_S12_Oro", + "templateId": "ChallengeBundle:QuestBundle_S12_Oro", + "grantedquestinstanceids": [ + "S12-Quest:Quest_BR_Styles_Oro_Elimination_Assists", + "S12-Quest:Quest_BR_Styles_Oro_Play_with_Friend", + "S12-Quest:Quest_BR_Styles_Oro_Damage", + "S12-Quest:Quest_BR_Styles_Oro_Earn_Medals" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_Oro" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_PeelySpy", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_PeelySpy", + "grantedquestinstanceids": [ + "S12-Quest:quest_peely_frontend_spy_01", + "S12-Quest:quest_peely_frontend_spy_02", + "S12-Quest:quest_peely_frontend_spy_03" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_PeelySpy" + }, + { + "itemGuid": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency", + "templateId": "ChallengeBundle:QuestBundle_Event_S12_StormTheAgency", + "grantedquestinstanceids": [ + "S12-Quest:Quest_S12_StA_LandAgency", + "S12-Quest:Quest_S12_StA_SurviveStormCircles", + "S12-Quest:Quest_S12_StA_OpenFactionChestDifferentSpyBases", + "S12-Quest:Quest_S12_StA_SwimHatches", + "S12-Quest:Quest_S12_StA_ElimHenchmanDifferentSafehouses" + ], + "challenge_bundle_schedule_id": "S12-ChallengeBundleSchedule:Season12_Schedule_Event_StormTheAgency" + } + ], + "Quests": [ + { + "itemGuid": "S12-Quest:quest_operation_damageplayers", + "templateId": "Quest:quest_operation_damageplayers", + "objectives": [ + { + "name": "quest_operation_damageplayers_obj", + "count": 1000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_SpyGames" + }, + { + "itemGuid": "S12-Quest:quest_operation_eliminateplayers", + "templateId": "Quest:quest_operation_eliminateplayers", + "objectives": [ + { + "name": "quest_operation_eliminateplayers_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_SpyGames" + }, + { + "itemGuid": "S12-Quest:quest_operation_winmatch", + "templateId": "Quest:quest_operation_winmatch", + "objectives": [ + { + "name": "quest_operation_winmatch_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_SpyGames" + }, + { + "itemGuid": "S12-Quest:quest_AB_photographer_alter", + "templateId": "Quest:quest_AB_photographer_alter", + "objectives": [ + { + "name": "quest_AB_photographer_alter_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_AdventureGirl" + }, + { + "itemGuid": "S12-Quest:quest_AB_photographer_ego", + "templateId": "Quest:quest_AB_photographer_ego", + "objectives": [ + { + "name": "quest_AB_photographer_ego_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_AdventureGirl" + }, + { + "itemGuid": "S12-Quest:quest_ab_buffcat_alter", + "templateId": "Quest:quest_ab_buffcat_alter", + "objectives": [ + { + "name": "quest_ab_buffcat_alter_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Meowscle" + }, + { + "itemGuid": "S12-Quest:quest_ab_buffcat_ego", + "templateId": "Quest:quest_ab_buffcat_ego", + "objectives": [ + { + "name": "quest_ab_buffcat_ego_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Meowscle" + }, + { + "itemGuid": "S12-Quest:quest_ab_midas_alter", + "templateId": "Quest:quest_ab_midas_alter", + "objectives": [ + { + "name": "quest_ab_midas_alter_obj", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Midas" + }, + { + "itemGuid": "S12-Quest:quest_ab_midas_ego", + "templateId": "Quest:quest_ab_midas_ego", + "objectives": [ + { + "name": "quest_ab_midas_ego_obj", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Midas" + }, + { + "itemGuid": "S12-Quest:quest_AB_skulldude_alter", + "templateId": "Quest:quest_AB_skulldude_alter", + "objectives": [ + { + "name": "quest_AB_skulldude_alter_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Skulldude" + }, + { + "itemGuid": "S12-Quest:quest_AB_skulldude_ego", + "templateId": "Quest:quest_AB_skulldude_ego", + "objectives": [ + { + "name": "quest_AB_skulldude_ego_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_Skulldude" + }, + { + "itemGuid": "S12-Quest:AB_tntina_alter", + "templateId": "Quest:AB_tntina_alter", + "objectives": [ + { + "name": "AB_tntina_alter_obj", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_TNTina" + }, + { + "itemGuid": "S12-Quest:AB_tntina_ego", + "templateId": "Quest:AB_tntina_ego", + "objectives": [ + { + "name": "AB_tntina_ego_obj", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_AB_TNTina" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_bananaAgent", + "templateId": "Quest:quest_style_superlevel_bananaAgent", + "objectives": [ + { + "name": "quest_style_superlevel_banana_agent_obj", + "count": 300 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_buffcat", + "templateId": "Quest:quest_style_superlevel_buffcat", + "objectives": [ + { + "name": "quest_style_superlevel_buffcat_obj", + "count": 180 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_midas", + "templateId": "Quest:quest_style_superlevel_midas", + "objectives": [ + { + "name": "quest_style_superlevel_midas_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_photographer", + "templateId": "Quest:quest_style_superlevel_photographer", + "objectives": [ + { + "name": "quest_style_superlevel_photographer_obj", + "count": 260 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_skulldude", + "templateId": "Quest:quest_style_superlevel_skulldude", + "objectives": [ + { + "name": "quest_style_superlevel_skulldude_obj", + "count": 140 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:quest_style_superlevel_TNTina", + "templateId": "Quest:quest_style_superlevel_TNTina", + "objectives": [ + { + "name": "quest_style_superlevel_tntina_obj", + "count": 220 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Superlevel" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_YachtChallenge", + "templateId": "Quest:Quest_S12_Donut_YachtChallenge", + "objectives": [ + { + "name": "Quest_S12_Donut_YachtChallenge", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_YachtChallenge" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W1_A", + "templateId": "Quest:Quest_S12_Donut_W1_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W1_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W1" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W1_B", + "templateId": "Quest:Quest_S12_Donut_W1_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W1_B", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W1" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W2_A", + "templateId": "Quest:Quest_S12_Donut_W2_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W2_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W2" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W2_B", + "templateId": "Quest:Quest_S12_Donut_W2_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W2_B_0", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W2_B_1", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W2_B_2", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W2" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W3_A", + "templateId": "Quest:Quest_S12_Donut_W3_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W3_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W3" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W3_B", + "templateId": "Quest:Quest_S12_Donut_W3_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W3_B", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W3" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W4_A", + "templateId": "Quest:Quest_S12_Donut_W4_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W4_A_0", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W4_A_1", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W4" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W4_B", + "templateId": "Quest:Quest_S12_Donut_W4_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W4_B", + "count": 10000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W4" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W5_A", + "templateId": "Quest:Quest_S12_Donut_W5_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W5_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W5" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W5_B", + "templateId": "Quest:Quest_S12_Donut_W5_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W5_B_0", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W5_B_1", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W5_B_2", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W5_B_3", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W5_B_4", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W5" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W6_A", + "templateId": "Quest:Quest_S12_Donut_W6_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W6_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W6" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W6_B", + "templateId": "Quest:Quest_S12_Donut_W6_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W6_B", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W6" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W7_A", + "templateId": "Quest:Quest_S12_Donut_W7_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W7_A_0", + "count": 1 + }, + { + "name": "Quest_S12_Donut_W7_A_1", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W7_B", + "templateId": "Quest:Quest_S12_Donut_W7_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W7_B", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W7_A_ToastForInGame", + "templateId": "Quest:Quest_S12_Donut_W7_A_ToastForInGame", + "objectives": [ + { + "name": "Quest_S12_Donut_W7_A_ToastForInGame", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_A_ToastForInGame" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W7_Dummy", + "templateId": "Quest:Quest_S12_Donut_W7_Dummy", + "objectives": [ + { + "name": "Quest_S12_Donut_W7_Dummy", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W7_Dummy" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W8_A", + "templateId": "Quest:Quest_S12_Donut_W8_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W8_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W8" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W8_B", + "templateId": "Quest:Quest_S12_Donut_W8_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W8_B", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W8" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W9_A", + "templateId": "Quest:Quest_S12_Donut_W9_A", + "objectives": [ + { + "name": "Quest_S12_Donut_W9_A", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W9" + }, + { + "itemGuid": "S12-Quest:Quest_S12_Donut_W9_B", + "templateId": "Quest:Quest_S12_Donut_W9_B", + "objectives": [ + { + "name": "Quest_S12_Donut_W9_B", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Donut_W9" + }, + { + "itemGuid": "S12-Quest:quest_jerky_bounce", + "templateId": "Quest:quest_jerky_bounce", + "objectives": [ + { + "name": "quest_jerky_bounce_obj01", + "count": 1 + }, + { + "name": "quest_jerky_bounce_obj02", + "count": 1 + }, + { + "name": "quest_jerky_bounce_obj03", + "count": 1 + }, + { + "name": "quest_jerky_bounce_obj04", + "count": 1 + }, + { + "name": "quest_jerky_bounce_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Jerky" + }, + { + "itemGuid": "S12-Quest:quest_jerky_dance", + "templateId": "Quest:quest_jerky_dance", + "objectives": [ + { + "name": "quest_jerky_dance_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Jerky" + }, + { + "itemGuid": "S12-Quest:quest_jerky_visit", + "templateId": "Quest:quest_jerky_visit", + "objectives": [ + { + "name": "quest_jerky_visit_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Jerky" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q01a", + "templateId": "Quest:quest_s12_locationdomination_w1_q01a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q01a_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q01b", + "templateId": "Quest:quest_s12_locationdomination_w1_q01b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q01b_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q01c", + "templateId": "Quest:quest_s12_locationdomination_w1_q01c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q01c_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q02a", + "templateId": "Quest:quest_s12_locationdomination_w1_q02a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q02a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q02b", + "templateId": "Quest:quest_s12_locationdomination_w1_q02b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q02b_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q02c", + "templateId": "Quest:quest_s12_locationdomination_w1_q02c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q02c_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q03a", + "templateId": "Quest:quest_s12_locationdomination_w1_q03a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q03a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q03b", + "templateId": "Quest:quest_s12_locationdomination_w1_q03b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q03b_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q03c", + "templateId": "Quest:quest_s12_locationdomination_w1_q03c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q03c_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q04a", + "templateId": "Quest:quest_s12_locationdomination_w1_q04a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q04a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q04b", + "templateId": "Quest:quest_s12_locationdomination_w1_q04b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q04b_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q04c", + "templateId": "Quest:quest_s12_locationdomination_w1_q04c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q04c_obj", + "count": 15 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q05a", + "templateId": "Quest:quest_s12_locationdomination_w1_q05a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q05a_obj", + "count": 500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q05b", + "templateId": "Quest:quest_s12_locationdomination_w1_q05b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q05b_obj", + "count": 1500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q05c", + "templateId": "Quest:quest_s12_locationdomination_w1_q05c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q05c_obj", + "count": 10000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q06a", + "templateId": "Quest:quest_s12_locationdomination_w1_q06a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q06a_obj", + "count": 250 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q06b", + "templateId": "Quest:quest_s12_locationdomination_w1_q06b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q06b_obj", + "count": 750 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q06c", + "templateId": "Quest:quest_s12_locationdomination_w1_q06c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q06c_obj", + "count": 1500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q07a", + "templateId": "Quest:quest_s12_locationdomination_w1_q07a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q07a_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q07b", + "templateId": "Quest:quest_s12_locationdomination_w1_q07b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q07b_obj", + "count": 15 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q07c", + "templateId": "Quest:quest_s12_locationdomination_w1_q07c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q07c_obj", + "count": 30 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q08a", + "templateId": "Quest:quest_s12_locationdomination_w1_q08a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q08a_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q08b", + "templateId": "Quest:quest_s12_locationdomination_w1_q08b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q08b_obj", + "count": 15 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q08c", + "templateId": "Quest:quest_s12_locationdomination_w1_q08c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q08c_obj", + "count": 30 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q09a", + "templateId": "Quest:quest_s12_locationdomination_w1_q09a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q09a_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q09b", + "templateId": "Quest:quest_s12_locationdomination_w1_q09b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q09b_obj", + "count": 25 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q09c", + "templateId": "Quest:quest_s12_locationdomination_w1_q09c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q09c_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q10a", + "templateId": "Quest:quest_s12_locationdomination_w1_q10a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q10a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q10b", + "templateId": "Quest:quest_s12_locationdomination_w1_q10b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q10b_obj", + "count": 6 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w1_q10c", + "templateId": "Quest:quest_s12_locationdomination_w1_q10c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w1_q10c_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q01a", + "templateId": "Quest:quest_s12_locationdomination_w2_q01a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q01a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q01b", + "templateId": "Quest:quest_s12_locationdomination_w2_q01b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q01b_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q01c", + "templateId": "Quest:quest_s12_locationdomination_w2_q01c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q01c_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q02a", + "templateId": "Quest:quest_s12_locationdomination_w2_q02a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q02a_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q02b", + "templateId": "Quest:quest_s12_locationdomination_w2_q02b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q02b_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q02c", + "templateId": "Quest:quest_s12_locationdomination_w2_q02c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q02c_obj", + "count": 18 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q03a", + "templateId": "Quest:quest_s12_locationdomination_w2_q03a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q03a_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q03b", + "templateId": "Quest:quest_s12_locationdomination_w2_q03b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q03b_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q03c", + "templateId": "Quest:quest_s12_locationdomination_w2_q03c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q03c_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q04a", + "templateId": "Quest:quest_s12_locationdomination_w2_q04a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q04a_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q04b", + "templateId": "Quest:quest_s12_locationdomination_w2_q04b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q04b_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q04c", + "templateId": "Quest:quest_s12_locationdomination_w2_q04c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q04c_obj", + "count": 18 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q05a", + "templateId": "Quest:quest_s12_locationdomination_w2_q05a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q05a_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q05b", + "templateId": "Quest:quest_s12_locationdomination_w2_q05b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q05b_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q05c", + "templateId": "Quest:quest_s12_locationdomination_w2_q05c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q05c_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q06a", + "templateId": "Quest:quest_s12_locationdomination_w2_q06a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q06a_obj", + "count": 500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q06b", + "templateId": "Quest:quest_s12_locationdomination_w2_q06b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q06b_obj", + "count": 1500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q06c", + "templateId": "Quest:quest_s12_locationdomination_w2_q06c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q06c_obj", + "count": 3000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q07a", + "templateId": "Quest:quest_s12_locationdomination_w2_q07a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q07a_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q07b", + "templateId": "Quest:quest_s12_locationdomination_w2_q07b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q07b_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q07c", + "templateId": "Quest:quest_s12_locationdomination_w2_q07c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q07c_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q08a", + "templateId": "Quest:quest_s12_locationdomination_w2_q08a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q08a_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q08b", + "templateId": "Quest:quest_s12_locationdomination_w2_q08b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q08b_obj", + "count": 250 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q08c", + "templateId": "Quest:quest_s12_locationdomination_w2_q08c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q08c_obj", + "count": 500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q09a", + "templateId": "Quest:quest_s12_locationdomination_w2_q09a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q09a_obj", + "count": 300 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q09b", + "templateId": "Quest:quest_s12_locationdomination_w2_q09b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q09b_obj", + "count": 900 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q09c", + "templateId": "Quest:quest_s12_locationdomination_w2_q09c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q09c_obj", + "count": 2500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q10a", + "templateId": "Quest:quest_s12_locationdomination_w2_q10a", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q10a_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q10b", + "templateId": "Quest:quest_s12_locationdomination_w2_q10b", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q10b_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_locationdomination_w2_q10c", + "templateId": "Quest:quest_s12_locationdomination_w2_q10c", + "objectives": [ + { + "name": "quest_s12_locationdomination_w2_q10c_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_LocationDomination_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q01", + "templateId": "Quest:quest_s12_w1_q01", + "objectives": [ + { + "name": "quest_s12_w1_q01_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q02", + "templateId": "Quest:quest_s12_w1_q02", + "objectives": [ + { + "name": "quest_s12_w1_q02_obj", + "count": 2000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q03", + "templateId": "Quest:quest_s12_w1_q03", + "objectives": [ + { + "name": "quest_s12_w1_q03_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q04", + "templateId": "Quest:quest_s12_w1_q04", + "objectives": [ + { + "name": "quest_s12_w1_q04_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q05", + "templateId": "Quest:quest_s12_w1_q05", + "objectives": [ + { + "name": "quest_s12_w1_q05_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q06", + "templateId": "Quest:quest_s12_w1_q06", + "objectives": [ + { + "name": "quest_s12_w1_q06_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q07", + "templateId": "Quest:quest_s12_w1_q07", + "objectives": [ + { + "name": "quest_s12_w1_q07_obj01", + "count": 1 + }, + { + "name": "quest_s12_w1_q07_obj02", + "count": 1 + }, + { + "name": "quest_s12_w1_q07_obj03", + "count": 1 + }, + { + "name": "quest_s12_w1_q08_obj04", + "count": 1 + }, + { + "name": "quest_s12_w1_q09_obj05", + "count": 1 + }, + { + "name": "quest_s12_w1_q07_obj06", + "count": 1 + }, + { + "name": "quest_s12_w1_q07_obj07", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q08", + "templateId": "Quest:quest_s12_w1_q08", + "objectives": [ + { + "name": "quest_s12_w1_q08_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q09", + "templateId": "Quest:quest_s12_w1_q09", + "objectives": [ + { + "name": "quest_s12_w1_q09_obj01", + "count": 1 + }, + { + "name": "quest_s12_w1_q09_obj02", + "count": 1 + }, + { + "name": "quest_s12_w1_q09_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w1_q10", + "templateId": "Quest:quest_s12_w1_q10", + "objectives": [ + { + "name": "quest_s12_w1_q10_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q01", + "templateId": "Quest:quest_s12_w2_q01", + "objectives": [ + { + "name": "quest_s12_w2_q01_obj01", + "count": 1 + }, + { + "name": "quest_s12_w2_q01_obj02", + "count": 1 + }, + { + "name": "quest_s12_w2_q01_obj03", + "count": 1 + }, + { + "name": "quest_s12_w2_q01_obj04", + "count": 1 + }, + { + "name": "quest_s12_w2_q01_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q02", + "templateId": "Quest:quest_s12_w2_q02", + "objectives": [ + { + "name": "quest_s12_w2_q02_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q03", + "templateId": "Quest:quest_s12_w2_q03", + "objectives": [ + { + "name": "quest_s12_w2_q03_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q04", + "templateId": "Quest:quest_s12_w2_q04", + "objectives": [ + { + "name": "quest_s12_w2_q04_obj", + "count": 50 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q05", + "templateId": "Quest:quest_s12_w2_q05", + "objectives": [ + { + "name": "quest_s12_w2_q05_obj", + "count": 250 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q06", + "templateId": "Quest:quest_s12_w2_q06", + "objectives": [ + { + "name": "quest_s12_w2_q06_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q07", + "templateId": "Quest:quest_s12_w2_q07", + "objectives": [ + { + "name": "quest_s12_w2_q07_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q08", + "templateId": "Quest:quest_s12_w2_q08", + "objectives": [ + { + "name": "quest_s12_w2_q08_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q09", + "templateId": "Quest:quest_s12_w2_q09", + "objectives": [ + { + "name": "quest_s12_w2_q09_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w2_q10", + "templateId": "Quest:quest_s12_w2_q10", + "objectives": [ + { + "name": "quest_s12_w2_q10_obj01", + "count": 300 + }, + { + "name": "quest_s12_w2_q10_obj02", + "count": 400 + }, + { + "name": "quest_s12_w2_q10_obj03", + "count": 500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q01", + "templateId": "Quest:quest_s12_w3_q01", + "objectives": [ + { + "name": "quest_s12_w3_q01_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q02", + "templateId": "Quest:quest_s12_w3_q02", + "objectives": [ + { + "name": "quest_s12_w3_q02_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q03", + "templateId": "Quest:quest_s12_w3_q03", + "objectives": [ + { + "name": "quest_s12_w3_q03_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q04", + "templateId": "Quest:quest_s12_w3_q04", + "objectives": [ + { + "name": "quest_s12_w3_q04_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q05", + "templateId": "Quest:quest_s12_w3_q05", + "objectives": [ + { + "name": "quest_s12_w3_q05_obj01", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj02", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj03", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj04", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj05", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj06", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj07", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj08", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj09", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj10", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj11", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj12", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj13", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj14", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj15", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj16", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj17", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj18", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj19", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj20", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj21", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj22", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj23", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj24", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj25", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj26", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj27", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj28", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj29", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj30", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj31", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj32", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj33", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj34", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj35", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj36", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj37", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj38", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj39", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj40", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj41", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj42", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj43", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj44", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj45", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj46", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj47", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj48", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj49", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj50", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj51", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj52", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj53", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj54", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj55", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj56", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj57", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj58", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj59", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj60", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj61", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj62", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj63", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj64", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj65", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj66", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj67", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj68", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj69", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj70", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj71", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj72", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj73", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj75", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj76", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj77", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj78", + "count": 1 + }, + { + "name": "quest_s12_w3_q05_obj79", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q06", + "templateId": "Quest:quest_s12_w3_q06", + "objectives": [ + { + "name": "quest_s12_w3_q06_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q07", + "templateId": "Quest:quest_s12_w3_q07", + "objectives": [ + { + "name": "quest_s12_w3_q07_obj", + "count": 500 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q08", + "templateId": "Quest:quest_s12_w3_q08", + "objectives": [ + { + "name": "quest_s12_w4_q07_obj01", + "count": 1 + }, + { + "name": "quest_s12_w4_q07_obj02", + "count": 1 + }, + { + "name": "quest_s12_w4_q07_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q09", + "templateId": "Quest:quest_s12_w3_q09", + "objectives": [ + { + "name": "quest_s12_w3_q09_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w3_q10", + "templateId": "Quest:quest_s12_w3_q10", + "objectives": [ + { + "name": "quest_s12_w3_q10_obj", + "count": 2 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q01", + "templateId": "Quest:quest_s12_w4_q01", + "objectives": [ + { + "name": "quest_s12_w4_q01_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q02", + "templateId": "Quest:quest_s12_w4_q02", + "objectives": [ + { + "name": "quest_s12_w4_q02_obj", + "count": 20 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q03", + "templateId": "Quest:quest_s12_w4_q03", + "objectives": [ + { + "name": "quest_s12_w4_q03_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q04", + "templateId": "Quest:quest_s12_w4_q04", + "objectives": [ + { + "name": "quest_s12_w4_q04_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q05", + "templateId": "Quest:quest_s12_w4_q05", + "objectives": [ + { + "name": "quest_s12_w4_q05_obj01", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj02", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj03", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj04", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj05", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj06", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj07", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj08", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj09", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj10", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj11", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj12", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj13", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj14", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj15", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj16", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj17", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj18", + "count": 1 + }, + { + "name": "quest_s12_w4_q05_obj19", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q06", + "templateId": "Quest:quest_s12_w4_q06", + "objectives": [ + { + "name": "quest_s12_w4_q06_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q07", + "templateId": "Quest:quest_s12_w4_q07", + "objectives": [ + { + "name": "quest_s12_w4_q07_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q08", + "templateId": "Quest:quest_s12_w4_q08", + "objectives": [ + { + "name": "quest_s12_w4_q08_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q09", + "templateId": "Quest:quest_s12_w4_q09", + "objectives": [ + { + "name": "quest_s12_w4_q09_obj01", + "count": 1 + }, + { + "name": "quest_s12_w4_q09_obj02", + "count": 1 + }, + { + "name": "quest_s12_w4_q09_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w4_q10", + "templateId": "Quest:quest_s12_w4_q10", + "objectives": [ + { + "name": "quest_s12_w4_q10_obj01", + "count": 1 + }, + { + "name": "quest_s12_w4_q10_obj02", + "count": 1 + }, + { + "name": "quest_s12_w4_q10_obj03", + "count": 1 + }, + { + "name": "quest_s12_w4_q10_obj04", + "count": 1 + }, + { + "name": "quest_s12_w4_q10_obj05", + "count": 1 + }, + { + "name": "quest_s12_w4_q10_obj06", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q01", + "templateId": "Quest:quest_s12_w5_q01", + "objectives": [ + { + "name": "quest_s12_w5_q01_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q02", + "templateId": "Quest:quest_s12_w5_q02", + "objectives": [ + { + "name": "quest_s12_w5_q02_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q03", + "templateId": "Quest:quest_s12_w5_q03", + "objectives": [ + { + "name": "quest_s12_w5_q03_obj", + "count": 400 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q04", + "templateId": "Quest:quest_s12_w5_q04", + "objectives": [ + { + "name": "quest_s12_w5_q04_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q05", + "templateId": "Quest:quest_s12_w5_q05", + "objectives": [ + { + "name": "quest_s12_w5_q05_obj", + "count": 9 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q06", + "templateId": "Quest:quest_s12_w5_q06", + "objectives": [ + { + "name": "quest_s12_w5_q06_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q07", + "templateId": "Quest:quest_s12_w5_q07", + "objectives": [ + { + "name": "quest_s12_w5_q07_obj01", + "count": 1 + }, + { + "name": "quest_s12_w5_q07_obj02", + "count": 1 + }, + { + "name": "quest_s12_w5_q07_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q08", + "templateId": "Quest:quest_s12_w5_q08", + "objectives": [ + { + "name": "quest_s12_w5_q08_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q09", + "templateId": "Quest:quest_s12_w5_q09", + "objectives": [ + { + "name": "quest_s12_w5_q09_obj", + "count": 400 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w5_q10", + "templateId": "Quest:quest_s12_w5_q10", + "objectives": [ + { + "name": "quest_s12_w6_q09_obj01", + "count": 1 + }, + { + "name": "quest_s12_w6_q09_obj02", + "count": 1 + }, + { + "name": "quest_s12_w6_q09_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q01", + "templateId": "Quest:quest_s12_w6_q01", + "objectives": [ + { + "name": "quest_s12_w6_q01_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q02", + "templateId": "Quest:quest_s12_w6_q02", + "objectives": [ + { + "name": "quest_s12_w6_q02_obj", + "count": 1000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q03", + "templateId": "Quest:quest_s12_w6_q03", + "objectives": [ + { + "name": "quest_s12_w6_q03_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q04", + "templateId": "Quest:quest_s12_w6_q04", + "objectives": [ + { + "name": "quest_s12_w6_q04_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q05", + "templateId": "Quest:quest_s12_w6_q05", + "objectives": [ + { + "name": "quest_s12_w6_q05_obj01", + "count": 1 + }, + { + "name": "quest_s12_w6_q05_obj02", + "count": 1 + }, + { + "name": "quest_s12_w6_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q06", + "templateId": "Quest:quest_s12_w6_q06", + "objectives": [ + { + "name": "quest_s12_w6_q06_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q07", + "templateId": "Quest:quest_s12_w6_q07", + "objectives": [ + { + "name": "quest_s12_w6_q07_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q08", + "templateId": "Quest:quest_s12_w6_q08", + "objectives": [ + { + "name": "quest_s12_w6_q08_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q09", + "templateId": "Quest:quest_s12_w6_q09", + "objectives": [ + { + "name": "quest_s12_w5_q10_obj01", + "count": 1 + }, + { + "name": "quest_s12_w5_q10_obj02", + "count": 1 + }, + { + "name": "quest_s12_w5_q10_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w6_q10", + "templateId": "Quest:quest_s12_w6_q10", + "objectives": [ + { + "name": "quest_s12_w6_q10_obj01", + "count": 1 + }, + { + "name": "quest_s12_w6_q10_obj02", + "count": 1 + }, + { + "name": "quest_s12_w6_q10_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q01", + "templateId": "Quest:quest_s12_w7_q01", + "objectives": [ + { + "name": "quest_s12_w7_q01_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q02", + "templateId": "Quest:quest_s12_w7_q02", + "objectives": [ + { + "name": "quest_s12_w7_q02_obj", + "count": 400 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q03", + "templateId": "Quest:quest_s12_w7_q03", + "objectives": [ + { + "name": "quest_s12_w7_q03_obj01", + "count": 1 + }, + { + "name": "quest_s12_w7_q03_obj02", + "count": 1 + }, + { + "name": "quest_s12_w7_q03_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:Quest_s12_w7_q04_HarvestAfterLanding", + "templateId": "Quest:Quest_s12_w7_q04_HarvestAfterLanding", + "objectives": [ + { + "name": "w7_q4_harvest_afterjumping_wood", + "count": 75 + }, + { + "name": "w7_q4_harvest_afterjumping_stone", + "count": 75 + }, + { + "name": "w7_q4_harvest_afterjumping_metal", + "count": 75 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q05", + "templateId": "Quest:quest_s12_w7_q05", + "objectives": [ + { + "name": "quest_s12_w7_q05_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q06", + "templateId": "Quest:quest_s12_w7_q06", + "objectives": [ + { + "name": "quest_s12_w7_q06_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q07", + "templateId": "Quest:quest_s12_w7_q07", + "objectives": [ + { + "name": "quest_s12_w7_q07_obj01", + "count": 1 + }, + { + "name": "quest_s12_w7_q07_obj02", + "count": 1 + }, + { + "name": "quest_s12_w7_q07_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q08", + "templateId": "Quest:quest_s12_w7_q08", + "objectives": [ + { + "name": "quest_s12_w7_q08_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q09", + "templateId": "Quest:quest_s12_w7_q09", + "objectives": [ + { + "name": "quest_s12_w7_q09_obj01", + "count": 1 + }, + { + "name": "quest_s12_w7_q09_obj02", + "count": 1 + }, + { + "name": "quest_s12_w7_q09_obj03", + "count": 1 + }, + { + "name": "quest_s12_w7_q09_obj04", + "count": 1 + }, + { + "name": "quest_s12_w7_q09_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w7_q10", + "templateId": "Quest:quest_s12_w7_q10", + "objectives": [ + { + "name": "quest_s12_w7_q10_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q01", + "templateId": "Quest:quest_s12_w8_q01", + "objectives": [ + { + "name": "quest_s12_w8_q01_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q02", + "templateId": "Quest:quest_s12_w8_q02", + "objectives": [ + { + "name": "quest_s12_w8_q02_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q03", + "templateId": "Quest:quest_s12_w8_q03", + "objectives": [ + { + "name": "quest_s12_w8_q03_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q04", + "templateId": "Quest:quest_s12_w8_q04", + "objectives": [ + { + "name": "quest_s12_w8_q04_obj01", + "count": 1 + }, + { + "name": "quest_s12_w8_q04_obj02", + "count": 1 + }, + { + "name": "quest_s12_w8_q04_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q05", + "templateId": "Quest:quest_s12_w8_q05", + "objectives": [ + { + "name": "quest_s12_w8_q05_obj01", + "count": 1 + }, + { + "name": "quest_s12_w8_q05_obj02", + "count": 1 + }, + { + "name": "quest_s12_w8_q05_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q06", + "templateId": "Quest:quest_s12_w8_q06", + "objectives": [ + { + "name": "quest_s12_w8_q06_obj01", + "count": 1 + }, + { + "name": "quest_s12_w8_q06_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q07", + "templateId": "Quest:quest_s12_w8_q07", + "objectives": [ + { + "name": "quest_s12_w8_q07_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q08", + "templateId": "Quest:quest_s12_w8_q08", + "objectives": [ + { + "name": "quest_s12_w8_q08_obj01", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj02", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj03", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj04", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj05", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj06", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj07", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj08", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj09", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj10", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj11", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj12", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj13", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj14", + "count": 1 + }, + { + "name": "quest_s12_w8_q08_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q09", + "templateId": "Quest:quest_s12_w8_q09", + "objectives": [ + { + "name": "quest_s12_w8_q09_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w8_q10", + "templateId": "Quest:quest_s12_w8_q10", + "objectives": [ + { + "name": "quest_s12_w8_q10_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q01", + "templateId": "Quest:quest_s12_w9_q01", + "objectives": [ + { + "name": "quest_s12_w9_q01_obj01", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj02", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj03", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj04", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj05", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj06", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj07", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj08", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj09", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj10", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj11", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj12", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj13", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj14", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj15", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj16", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj17", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj18", + "count": 1 + }, + { + "name": "quest_s12_w9_q01_obj19", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q02", + "templateId": "Quest:quest_s12_w9_q02", + "objectives": [ + { + "name": "quest_s12_w9_q02_obj", + "count": 300 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q03", + "templateId": "Quest:quest_s12_w9_q03", + "objectives": [ + { + "name": "quest_s12_w9_q03_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q04", + "templateId": "Quest:quest_s12_w9_q04", + "objectives": [ + { + "name": "quest_s12_w9_q04_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q05", + "templateId": "Quest:quest_s12_w9_q05", + "objectives": [ + { + "name": "quest_s12_w9_q05_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q06", + "templateId": "Quest:quest_s12_w9_q06", + "objectives": [ + { + "name": "quest_s12_w9_q06_obj", + "count": 5 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q07", + "templateId": "Quest:quest_s12_w9_q07", + "objectives": [ + { + "name": "quest_s12_w9_q07_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q08", + "templateId": "Quest:quest_s12_w9_q08", + "objectives": [ + { + "name": "quest_s12_w9_q08_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q09", + "templateId": "Quest:quest_s12_w9_q09", + "objectives": [ + { + "name": "quest_s12_w9_q09_obj", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w9_q10", + "templateId": "Quest:quest_s12_w9_q10", + "objectives": [ + { + "name": "quest_s12_w9_q10_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q01", + "templateId": "Quest:quest_s12_w10_q01", + "objectives": [ + { + "name": "quest_s12_w10_q01_obj01", + "count": 1 + }, + { + "name": "quest_s12_w10_q01_obj02", + "count": 1 + }, + { + "name": "quest_s12_w10_q01_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q02", + "templateId": "Quest:quest_s12_w10_q02", + "objectives": [ + { + "name": "quest_s12_w10_q02_obj", + "count": 7 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q03", + "templateId": "Quest:quest_s12_w10_q03", + "objectives": [ + { + "name": "quest_s12_w10_q03_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q04", + "templateId": "Quest:quest_s12_w10_q04", + "objectives": [ + { + "name": "quest_s12_w10_q04_obj", + "count": 200 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q05", + "templateId": "Quest:quest_s12_w10_q05", + "objectives": [ + { + "name": "quest_s12_w10_q05_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q06", + "templateId": "Quest:quest_s12_w10_q06", + "objectives": [ + { + "name": "quest_s12_w10_q06_obj01", + "count": 1 + }, + { + "name": "quest_s12_w10_q06_obj02", + "count": 1 + }, + { + "name": "quest_s12_w10_q06_obj03", + "count": 1 + }, + { + "name": "quest_s12_w10_q06_obj04", + "count": 1 + }, + { + "name": "quest_s12_w10_q06_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q07", + "templateId": "Quest:quest_s12_w10_q07", + "objectives": [ + { + "name": "quest_s12_w10_q07_obj", + "count": 3 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q08", + "templateId": "Quest:quest_s12_w10_q08", + "objectives": [ + { + "name": "quest_s12_w10_q08_obj01", + "count": 1 + }, + { + "name": "quest_s12_w10_q08_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q09", + "templateId": "Quest:quest_s12_w10_q09", + "objectives": [ + { + "name": "quest_s12_w10_q09_obj01", + "count": 1 + }, + { + "name": "quest_s12_w10_q09_obj02", + "count": 1 + }, + { + "name": "quest_s12_w10_q09_obj03", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_w10_q10", + "templateId": "Quest:quest_s12_w10_q10", + "objectives": [ + { + "name": "quest_s12_w10_q10_obj", + "count": 100 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:MissionBundle_S12_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w1", + "templateId": "Quest:quest_s12_xpcoins_blue_w1", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w1_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w1_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w1_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w1_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_gold_w1", + "templateId": "Quest:quest_s12_xpcoins_gold_w1", + "objectives": [ + { + "name": "quest_s12_xpcoins_gold_w1_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w1", + "templateId": "Quest:quest_s12_xpcoins_green_w1", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w1_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w1_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w1", + "templateId": "Quest:quest_s12_xpcoins_purple_w1", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w1_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w1_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w1_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w1_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_01" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w2", + "templateId": "Quest:quest_s12_xpcoins_blue_w2", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w2_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w2_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w2_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w2_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w2", + "templateId": "Quest:quest_s12_xpcoins_green_w2", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w2_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w2_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w2", + "templateId": "Quest:quest_s12_xpcoins_purple_w2", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w2_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w2_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w2_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w2_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_02" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w3", + "templateId": "Quest:quest_s12_xpcoins_blue_w3", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w3_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w3_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w3_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w3_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_gold_w3", + "templateId": "Quest:quest_s12_xpcoins_gold_w3", + "objectives": [ + { + "name": "quest_s12_xpcoins_gold_w3_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w3", + "templateId": "Quest:quest_s12_xpcoins_green_w3", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w3_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w3_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w3", + "templateId": "Quest:quest_s12_xpcoins_purple_w3", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w3_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w3_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w3_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w3_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_03" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w4", + "templateId": "Quest:quest_s12_xpcoins_blue_w4", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w4_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w4_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w4_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w4_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w4", + "templateId": "Quest:quest_s12_xpcoins_green_w4", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w4_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w4_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w4", + "templateId": "Quest:quest_s12_xpcoins_purple_w4", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w4_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w4_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w4_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w4_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_04" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w5", + "templateId": "Quest:quest_s12_xpcoins_blue_w5", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w5_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w5_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w5_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w5_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_gold_w5", + "templateId": "Quest:quest_s12_xpcoins_gold_w5", + "objectives": [ + { + "name": "quest_s12_xpcoins_gold_w5_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w5", + "templateId": "Quest:quest_s12_xpcoins_green_w5", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w5_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w5_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w5", + "templateId": "Quest:quest_s12_xpcoins_purple_w5", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w5_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w5_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w5_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w5_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_05" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w6", + "templateId": "Quest:quest_s12_xpcoins_blue_w6", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w6_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w6_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w6_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w6_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w6", + "templateId": "Quest:quest_s12_xpcoins_green_w6", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w6_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w6_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w6", + "templateId": "Quest:quest_s12_xpcoins_purple_w6", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w6_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w6_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w6_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w6_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_06" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w7", + "templateId": "Quest:quest_s12_xpcoins_blue_w7", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w7_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w7_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w7_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w7_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_gold_w7", + "templateId": "Quest:quest_s12_xpcoins_gold_w7", + "objectives": [ + { + "name": "quest_s12_xpcoins_gold_w7_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w7", + "templateId": "Quest:quest_s12_xpcoins_green_w7", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w7_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w7_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w7", + "templateId": "Quest:quest_s12_xpcoins_purple_w7", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w7_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w7_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w7_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w7_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w8", + "templateId": "Quest:quest_s12_xpcoins_blue_w8", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w8_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w8_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w8_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w8_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w8", + "templateId": "Quest:quest_s12_xpcoins_green_w8", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w8_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w8_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w8", + "templateId": "Quest:quest_s12_xpcoins_purple_w8", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w8_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w8_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w8_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w8_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w9", + "templateId": "Quest:quest_s12_xpcoins_blue_w9", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w9_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w9_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w9_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w9_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_gold_w9", + "templateId": "Quest:quest_s12_xpcoins_gold_w9", + "objectives": [ + { + "name": "quest_s12_xpcoins_gold_w9_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w9", + "templateId": "Quest:quest_s12_xpcoins_green_w9", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w9_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w9_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w9", + "templateId": "Quest:quest_s12_xpcoins_purple_w9", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w9_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w9_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w9_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w9_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_blue_w10", + "templateId": "Quest:quest_s12_xpcoins_blue_w10", + "objectives": [ + { + "name": "quest_s12_xpcoins_blue_w10_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w10_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w10_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_blue_w10_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_green_w10", + "templateId": "Quest:quest_s12_xpcoins_green_w10", + "objectives": [ + { + "name": "quest_s12_xpcoins_green_w10_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj04", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj05", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj06", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj07", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj08", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj09", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj10", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj11", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_green_w10_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S12-Quest:quest_s12_xpcoins_purple_w10", + "templateId": "Quest:quest_s12_xpcoins_purple_w10", + "objectives": [ + { + "name": "quest_s12_xpcoins_purple_w10_obj01", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w10_obj02", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w10_obj03", + "count": 1 + }, + { + "name": "quest_s12_xpcoins_purple_w10_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S12-Quest:Quest_BR_Styles_Oro_Damage", + "templateId": "Quest:Quest_BR_Styles_Oro_Damage", + "objectives": [ + { + "name": "athena_oro_damage", + "count": 1000 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Oro" + }, + { + "itemGuid": "S12-Quest:Quest_BR_Styles_Oro_Earn_Medals", + "templateId": "Quest:Quest_BR_Styles_Oro_Earn_Medals", + "objectives": [ + { + "name": "athena_oro_earn_accolades", + "count": 40 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Oro" + }, + { + "itemGuid": "S12-Quest:Quest_BR_Styles_Oro_Elimination_Assists", + "templateId": "Quest:Quest_BR_Styles_Oro_Elimination_Assists", + "objectives": [ + { + "name": "athena_oro_elimination_assists", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Oro" + }, + { + "itemGuid": "S12-Quest:Quest_BR_Styles_Oro_Play_with_Friend", + "templateId": "Quest:Quest_BR_Styles_Oro_Play_with_Friend", + "objectives": [ + { + "name": "athena_oro_play_w_frient", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_S12_Oro" + }, + { + "itemGuid": "S12-Quest:quest_peely_frontend_spy_01", + "templateId": "Quest:quest_peely_frontend_spy_01", + "objectives": [ + { + "name": "quest_peely_frontend_spy_01_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_PeelySpy" + }, + { + "itemGuid": "S12-Quest:quest_peely_frontend_spy_02", + "templateId": "Quest:quest_peely_frontend_spy_02", + "objectives": [ + { + "name": "quest_peely_frontend_spy_02_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_PeelySpy" + }, + { + "itemGuid": "S12-Quest:quest_peely_frontend_spy_03", + "templateId": "Quest:quest_peely_frontend_spy_03", + "objectives": [ + { + "name": "quest_peely_frontend_spy_03_obj", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_PeelySpy" + }, + { + "itemGuid": "S12-Quest:Quest_S12_StA_ElimHenchmanDifferentSafehouses", + "templateId": "Quest:Quest_S12_StA_ElimHenchmanDifferentSafehouses", + "objectives": [ + { + "name": "Quest_S12_StA_ElimHenchmanDifferentSafehouses_0", + "count": 1 + }, + { + "name": "Quest_S12_StA_ElimHenchmanDifferentSafehouses_1", + "count": 1 + }, + { + "name": "Quest_S12_StA_ElimHenchmanDifferentSafehouses_2", + "count": 1 + }, + { + "name": "Quest_S12_StA_ElimHenchmanDifferentSafehouses_3", + "count": 1 + }, + { + "name": "Quest_S12_StA_ElimHenchmanDifferentSafehouses_4", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + }, + { + "itemGuid": "S12-Quest:Quest_S12_StA_LandAgency", + "templateId": "Quest:Quest_S12_StA_LandAgency", + "objectives": [ + { + "name": "Quest_S12_StA_LandAgency", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + }, + { + "itemGuid": "S12-Quest:Quest_S12_StA_OpenFactionChestDifferentSpyBases", + "templateId": "Quest:Quest_S12_StA_OpenFactionChestDifferentSpyBases", + "objectives": [ + { + "name": "Quest_S12_StA_OpenFactionChestDifferentSpyBases_0", + "count": 1 + }, + { + "name": "Quest_S12_StA_OpenFactionChestDifferentSpyBases_1", + "count": 1 + }, + { + "name": "Quest_S12_StA_OpenFactionChestDifferentSpyBases_2", + "count": 1 + }, + { + "name": "Quest_S12_StA_OpenFactionChestDifferentSpyBases_3", + "count": 1 + }, + { + "name": "Quest_S12_StA_OpenFactionChestDifferentSpyBases_4", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + }, + { + "itemGuid": "S12-Quest:Quest_S12_StA_SurviveStormCircles", + "templateId": "Quest:Quest_S12_StA_SurviveStormCircles", + "objectives": [ + { + "name": "Quest_S12_StA_SurviveStormCircles", + "count": 10 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + }, + { + "itemGuid": "S12-Quest:Quest_S12_StA_SwimHatches", + "templateId": "Quest:Quest_S12_StA_SwimHatches", + "objectives": [ + { + "name": "Quest_S12_StA_SwimHatches_0", + "count": 1 + }, + { + "name": "Quest_S12_StA_SwimHatches_1", + "count": 1 + }, + { + "name": "Quest_S12_StA_SwimHatches_2", + "count": 1 + }, + { + "name": "Quest_S12_StA_SwimHatches_3", + "count": 1 + }, + { + "name": "Quest_S12_StA_SwimHatches_4", + "count": 1 + } + ], + "challenge_bundle_id": "S12-ChallengeBundle:QuestBundle_Event_S12_StormTheAgency" + } ] }, - { - "templateId": "Quest:Daily_HuskExtermination_AnyHero", - "objectives": [ - "kill_husk" + "Season13": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_BuildABrella_Schedule", + "templateId": "ChallengeBundleSchedule:Season13_BuildABrella_Schedule", + "granted_bundles": [ + "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season13_Feat_BundleSchedule", + "granted_bundles": [ + "S13-ChallengeBundle:Season13_Feat_Bundle" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season13_Mission_Schedule", + "granted_bundles": [ + "S13-ChallengeBundle:MissionBundle_S13_Week_01", + "S13-ChallengeBundle:MissionBundle_S13_Week_02", + "S13-ChallengeBundle:MissionBundle_S13_Week_03", + "S13-ChallengeBundle:MissionBundle_S13_Week_04", + "S13-ChallengeBundle:MissionBundle_S13_Week_05", + "S13-ChallengeBundle:MissionBundle_S13_Week_06", + "S13-ChallengeBundle:MissionBundle_S13_Week_07", + "S13-ChallengeBundle:MissionBundle_S13_Week_08", + "S13-ChallengeBundle:MissionBundle_S13_Week_09", + "S13-ChallengeBundle:MissionBundle_S13_Week_10" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season13_PunchCard_Schedule", + "granted_bundles": [ + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SidegradeWeapons", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pickaxe", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SeasonLevel", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThrowConsumable", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ShootDownSupplyDrop", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RideShark", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseWhirlpool", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeirdlySpecific", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MaxResources", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shark", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold", + "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule", + "templateId": "ChallengeBundleSchedule:Season13_SandCastle_Schedule", + "granted_bundles": [ + "S13-ChallengeBundle:QuestBundle_S13_SandCastle_01", + "S13-ChallengeBundle:QuestBundle_S13_SandCastle_02", + "S13-ChallengeBundle:QuestBundle_S13_SandCastle_03", + "S13-ChallengeBundle:QuestBundle_S13_SandCastle_04", + "S13-ChallengeBundle:QuestBundle_S13_SandCastle_05" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect", + "templateId": "ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect", + "granted_bundles": [ + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_1", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_2", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7", + "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8" + ] + }, + { + "itemGuid": "S13-ChallengeBundleSchedule:Season13_Styles_Schedule", + "templateId": "ChallengeBundleSchedule:Season13_Styles_Schedule", + "granted_bundles": [ + "S13-ChallengeBundle:QuestBundle_S13_Styles" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella", + "templateId": "ChallengeBundle:QuestBundle_S13_BuildABrella", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_BuildABrella_01", + "S13-Quest:Quest_S13_BuildABrella_02", + "S13-Quest:Quest_S13_BuildABrella_03", + "S13-Quest:Quest_S13_BuildABrella_04", + "S13-Quest:Quest_S13_BuildABrella_05", + "S13-Quest:Quest_S13_BuildABrella_06", + "S13-Quest:Quest_S13_BuildABrella_07", + "S13-Quest:Quest_S13_BuildABrella_08", + "S13-Quest:Quest_S13_BuildABrella_09", + "S13-Quest:Quest_S13_BuildABrella_10" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_BuildABrella_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:Season13_Feat_Bundle", + "templateId": "ChallengeBundle:Season13_Feat_Bundle", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_feat_accolade_expert_ar", + "S13-Quest:quest_s13_feat_accolade_expert_explosives", + "S13-Quest:quest_s13_feat_accolade_expert_pickaxe", + "S13-Quest:quest_s13_feat_accolade_expert_pistol", + "S13-Quest:quest_s13_feat_accolade_expert_shotgun", + "S13-Quest:quest_s13_feat_accolade_expert_smg", + "S13-Quest:quest_s13_feat_accolade_expert_sniper", + "S13-Quest:quest_s13_feat_accolade_firsts", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_2", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_3", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_4", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_5", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_6", + "S13-Quest:quest_s13_feat_accolade_weaponspecialist__samematch_7", + "S13-Quest:quest_s13_feat_athenarank_duo_100x", + "S13-Quest:quest_s13_feat_athenarank_duo_10x", + "S13-Quest:quest_s13_feat_athenarank_duo_1x", + "S13-Quest:quest_s13_feat_athenarank_rumble_100x", + "S13-Quest:quest_s13_feat_athenarank_rumble_1x", + "S13-Quest:quest_s13_feat_athenarank_solo_100x", + "S13-Quest:quest_s13_feat_athenarank_solo_10elims", + "S13-Quest:quest_s13_feat_athenarank_solo_10x", + "S13-Quest:quest_s13_feat_athenarank_solo_1x", + "S13-Quest:quest_s13_feat_athenarank_squad_100x", + "S13-Quest:quest_s13_feat_athenarank_squad_10x", + "S13-Quest:quest_s13_feat_athenarank_squad_1x", + "S13-Quest:quest_s13_feat_caught_goldfish", + "S13-Quest:quest_s13_feat_cb_stone", + "S13-Quest:quest_s13_feat_cb_wood", + "S13-Quest:quest_s13_feat_damage_dumpster_fire", + "S13-Quest:quest_s13_feat_damage_opponents_lootshark", + "S13-Quest:quest_s13_feat_damage_lootshark", + "S13-Quest:quest_s13_feat_damage_structure_burning_flaregun", + "S13-Quest:quest_s13_feat_death_goldfish", + "S13-Quest:quest_s13_feat_death_marauder", + "S13-Quest:quest_s13_feat_destroy_structures_fire", + "S13-Quest:quest_s13_feat_heal_slurpfish", + "S13-Quest:quest_s13_feat_jump_shark", + "S13-Quest:quest_s13_feat_kill_afterharpoonpull", + "S13-Quest:quest_s13_feat_kill_aftersupplydrop", + "S13-Quest:quest_s13_feat_kill_chargeshotgun_singlematch", + "S13-Quest:quest_s13_feat_kill_flaregun", + "S13-Quest:quest_s13_feat_kill_gliding", + "S13-Quest:quest_s13_feat_kill_goldfish", + "S13-Quest:quest_s13_feat_kill_instorm", + "S13-Quest:quest_s13_feat_kill_manyweapons", + "S13-Quest:quest_s13_feat_kill_marauders", + "S13-Quest:quest_s13_feat_kill_pickaxe", + "S13-Quest:quest_s13_feat_kill_rocketride", + "S13-Quest:quest_s13_feat_kill_whileimpulsed", + "S13-Quest:quest_s13_feat_kill_yeet", + "S13-Quest:quest_s13_feat_land_firsttime", + "S13-Quest:quest_s13_feat_land_kit", + "S13-Quest:quest_s13_feat_land_sandcastle", + "S13-Quest:quest_s13_feat_purplecoin_combo", + "S13-Quest:quest_s13_feat_revive_water", + "S13-Quest:quest_s13_feat_ride_lootshark", + "S13-Quest:quest_s13_feat_ride_lootshark_sandcastle", + "S13-Quest:quest_s13_feat_throw_consumable", + "S13-Quest:quest_s13_feat_use_owlgrappler", + "S13-Quest:quest_s13_feat_use_whirlpool", + "S13-Quest:quest_s13_feat_cb_metal", + "S13-Quest:quest_s13_feat_cb_completed" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Feat_BundleSchedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_01", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w1_q01", + "S13-Quest:quest_s13_w1_q02", + "S13-Quest:quest_s13_w1_q03", + "S13-Quest:quest_s13_w1_q04", + "S13-Quest:quest_s13_w1_q05", + "S13-Quest:quest_s13_w1_q06", + "S13-Quest:quest_s13_w1_q07" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_02", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w2_q01", + "S13-Quest:quest_s13_w2_q02", + "S13-Quest:quest_s13_w2_q03", + "S13-Quest:quest_s13_w2_q04", + "S13-Quest:quest_s13_w2_q05", + "S13-Quest:quest_s13_w2_q06", + "S13-Quest:quest_s13_w2_q07" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_03", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w3_q01", + "S13-Quest:quest_s13_w3_q02", + "S13-Quest:quest_s13_w3_q03", + "S13-Quest:quest_s13_w3_q04", + "S13-Quest:quest_s13_w3_q05", + "S13-Quest:quest_s13_w3_q06", + "S13-Quest:quest_s13_w3_q07", + "S13-Quest:quest_s13_w3_q08" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_04", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w4_q01", + "S13-Quest:quest_s13_w4_q02", + "S13-Quest:quest_s13_w4_q03", + "S13-Quest:quest_s13_w4_q04", + "S13-Quest:quest_s13_w4_q05", + "S13-Quest:quest_s13_w4_q06", + "S13-Quest:quest_s13_w4_q07", + "S13-Quest:quest_s13_w4_q08", + "S13-Quest:quest_s13_w4_q09" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_05", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w5_q01", + "S13-Quest:quest_s13_w5_q02", + "S13-Quest:quest_s13_w5_q03", + "S13-Quest:quest_s13_w5_q04", + "S13-Quest:quest_s13_w5_q05", + "S13-Quest:quest_s13_w5_q06", + "S13-Quest:quest_s13_w5_q07", + "S13-Quest:quest_s13_w5_q08" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_06", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w6_q01", + "S13-Quest:quest_s13_w6_q02", + "S13-Quest:quest_s13_w6_q03", + "S13-Quest:quest_s13_w6_q04", + "S13-Quest:quest_s13_w6_q05", + "S13-Quest:quest_s13_w6_q06", + "S13-Quest:quest_s13_w6_q07", + "S13-Quest:quest_s13_w6_q08", + "S13-Quest:quest_s13_w6_q09" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_07", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w7_q01", + "S13-Quest:quest_s13_w7_q02", + "S13-Quest:quest_s13_w7_q03", + "S13-Quest:quest_s13_w7_q04", + "S13-Quest:quest_s13_w7_q05", + "S13-Quest:quest_s13_w7_q06", + "S13-Quest:quest_s13_w7_q07", + "S13-Quest:quest_s13_w7_q08", + "S13-Quest:quest_s13_w7_q09" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_08", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w8_q01", + "S13-Quest:quest_s13_w8_q02", + "S13-Quest:quest_s13_w8_q03", + "S13-Quest:quest_s13_w8_q04", + "S13-Quest:quest_s13_w8_q05", + "S13-Quest:quest_s13_w8_q06", + "S13-Quest:quest_s13_w8_q07", + "S13-Quest:quest_s13_w8_q08" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_09", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w9_q01", + "S13-Quest:quest_s13_w9_q02", + "S13-Quest:quest_s13_w9_q03", + "S13-Quest:quest_s13_w9_q04", + "S13-Quest:quest_s13_w9_q05", + "S13-Quest:quest_s13_w9_q06", + "S13-Quest:quest_s13_w9_q07", + "S13-Quest:quest_s13_w9_q08" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:MissionBundle_S13_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S13_Week_10", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w10_q01", + "S13-Quest:quest_s13_w10_q02", + "S13-Quest:quest_s13_w10_q03", + "S13-Quest:quest_s13_w10_q04", + "S13-Quest:quest_s13_w10_q05", + "S13-Quest:quest_s13_w10_q06", + "S13-Quest:quest_s13_w10_q07", + "S13-Quest:quest_s13_w10_q08" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Mission_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Land", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Elim", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Chest", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Fish", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Upgrade", + "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_SupplyDrop" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Achievements", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Achievements_01", + "S13-Quest:Quest_S13_PunchCard_Achievements_02", + "S13-Quest:Quest_S13_PunchCard_Achievements_03", + "S13-Quest:Quest_S13_PunchCard_Achievements_04", + "S13-Quest:Quest_S13_PunchCard_Achievements_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_CatchFish_01", + "S13-Quest:Quest_S13_PunchCard_CatchFish_02", + "S13-Quest:Quest_S13_PunchCard_CatchFish_03", + "S13-Quest:Quest_S13_PunchCard_CatchFish_04", + "S13-Quest:Quest_S13_PunchCard_CatchFish_05", + "S13-Quest:Quest_S13_PunchCard_CatchFish_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Coins_Blue_01", + "S13-Quest:Quest_S13_PunchCard_Coins_Blue_02", + "S13-Quest:Quest_S13_PunchCard_Coins_Blue_03", + "S13-Quest:Quest_S13_PunchCard_Coins_Blue_04", + "S13-Quest:Quest_S13_PunchCard_Coins_Blue_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Coins_Gold_01", + "S13-Quest:Quest_S13_PunchCard_Coins_Gold_02", + "S13-Quest:Quest_S13_PunchCard_Coins_Gold_03", + "S13-Quest:Quest_S13_PunchCard_Coins_Gold_04", + "S13-Quest:Quest_S13_PunchCard_Coins_Gold_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Coins_Green_01", + "S13-Quest:Quest_S13_PunchCard_Coins_Green_02", + "S13-Quest:Quest_S13_PunchCard_Coins_Green_03", + "S13-Quest:Quest_S13_PunchCard_Coins_Green_04", + "S13-Quest:Quest_S13_PunchCard_Coins_Green_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Coins_Purple_01", + "S13-Quest:Quest_S13_PunchCard_Coins_Purple_02", + "S13-Quest:Quest_S13_PunchCard_Coins_Purple_03", + "S13-Quest:Quest_S13_PunchCard_Coins_Purple_04", + "S13-Quest:Quest_S13_PunchCard_Coins_Purple_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Damage", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Damage_01", + "S13-Quest:Quest_S13_PunchCard_Damage_02", + "S13-Quest:Quest_S13_PunchCard_Damage_03", + "S13-Quest:Quest_S13_PunchCard_Damage_04", + "S13-Quest:Quest_S13_PunchCard_Damage_05", + "S13-Quest:Quest_S13_PunchCard_Damage_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_DestroyTrees_01", + "S13-Quest:Quest_S13_PunchCard_DestroyTrees_02", + "S13-Quest:Quest_S13_PunchCard_DestroyTrees_03", + "S13-Quest:Quest_S13_PunchCard_DestroyTrees_04", + "S13-Quest:Quest_S13_PunchCard_DestroyTrees_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_DriveTeammates_01", + "S13-Quest:Quest_S13_PunchCard_DriveTeammates_02", + "S13-Quest:Quest_S13_PunchCard_DriveTeammates_03", + "S13-Quest:Quest_S13_PunchCard_DriveTeammates_04", + "S13-Quest:Quest_S13_PunchCard_DriveTeammates_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_01", + "S13-Quest:Quest_S13_PunchCard_Elim_02", + "S13-Quest:Quest_S13_PunchCard_Elim_03", + "S13-Quest:Quest_S13_PunchCard_Elim_04", + "S13-Quest:Quest_S13_PunchCard_Elim_05", + "S13-Quest:Quest_S13_PunchCard_Elim_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_05", + "S13-Quest:Quest_S13_PunchCard_Elim_Assault_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Far_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Far_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Far_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Far_04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pickaxe", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pickaxe", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Pickaxe_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shark", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shark", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Shark_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_01", + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_02", + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_03", + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_04", + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_05", + "S13-Quest:Quest_S13_PunchCard_Elim_SMG_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_GoFishing_01", + "S13-Quest:Quest_S13_PunchCard_GoFishing_02", + "S13-Quest:Quest_S13_PunchCard_GoFishing_03", + "S13-Quest:Quest_S13_PunchCard_GoFishing_04", + "S13-Quest:Quest_S13_PunchCard_GoFishing_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Harvest", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Harvest_01", + "S13-Quest:Quest_S13_PunchCard_Harvest_02", + "S13-Quest:Quest_S13_PunchCard_Harvest_03", + "S13-Quest:Quest_S13_PunchCard_Harvest_04", + "S13-Quest:Quest_S13_PunchCard_Harvest_05", + "S13-Quest:Quest_S13_PunchCard_Harvest_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MaxResources", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_MaxResources", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_MaxResources_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_01", + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_02", + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_03", + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_04", + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_05", + "S13-Quest:Quest_S13_PunchCard_MiniChallenges_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Placement", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Placement_01", + "S13-Quest:Quest_S13_PunchCard_Placement_02", + "S13-Quest:Quest_S13_PunchCard_Placement_03", + "S13-Quest:Quest_S13_PunchCard_Placement_04", + "S13-Quest:Quest_S13_PunchCard_Placement_05", + "S13-Quest:Quest_S13_PunchCard_Placement_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_01", + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_02", + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_03", + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_04", + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_05", + "S13-Quest:Quest_S13_PunchCard_RebootTeammates_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RideShark", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_RideShark", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_RideShark_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Search_Chests_01", + "S13-Quest:Quest_S13_PunchCard_Search_Chests_02", + "S13-Quest:Quest_S13_PunchCard_Search_Chests_03", + "S13-Quest:Quest_S13_PunchCard_Search_Chests_04", + "S13-Quest:Quest_S13_PunchCard_Search_Chests_05", + "S13-Quest:Quest_S13_PunchCard_Search_Chests_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_01", + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_02", + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_03", + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_04", + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_05", + "S13-Quest:Quest_S13_PunchCard_Search_Llamas_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_01", + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_02", + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_03", + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_04", + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_05", + "S13-Quest:Quest_S13_PunchCard_Search_RareChests_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_06" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SeasonLevel", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_SeasonLevel", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_SeasonLevel_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_Shakedowns_01", + "S13-Quest:Quest_S13_PunchCard_Shakedowns_02", + "S13-Quest:Quest_S13_PunchCard_Shakedowns_03", + "S13-Quest:Quest_S13_PunchCard_Shakedowns_04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ShootDownSupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_ShootDownSupplyDrop", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SidegradeWeapons", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_SidegradeWeapons", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_SidegradeWeapons_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_ThankDriver_01", + "S13-Quest:Quest_S13_PunchCard_ThankDriver_02", + "S13-Quest:Quest_S13_PunchCard_ThankDriver_03", + "S13-Quest:Quest_S13_PunchCard_ThankDriver_04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThrowConsumable", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_ThrowConsumable", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_ThrowConsumable_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_UseForaged_01", + "S13-Quest:Quest_S13_PunchCard_UseForaged_02", + "S13-Quest:Quest_S13_PunchCard_UseForaged_03", + "S13-Quest:Quest_S13_PunchCard_UseForaged_04", + "S13-Quest:Quest_S13_PunchCard_UseForaged_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseWhirlpool", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_UseWhirlpool", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_UseWhirlpool_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeirdlySpecific", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_WeirdlySpecific", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_WeirdlySpecific_01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes", + "templateId": "ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_LTM" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_PunchCard_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_01", + "templateId": "ChallengeBundle:QuestBundle_S13_SandCastle_01", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_sandcastle_q01" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_02", + "templateId": "ChallengeBundle:QuestBundle_S13_SandCastle_02", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_sandcastle_q02" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_03", + "templateId": "ChallengeBundle:QuestBundle_S13_SandCastle_03", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_sandcastle_q03" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_04", + "templateId": "ChallengeBundle:QuestBundle_S13_SandCastle_04", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_sandcastle_q04" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_05", + "templateId": "ChallengeBundle:QuestBundle_S13_SandCastle_05", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_sandcastle_q05" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_SandCastle_Schedule" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_1", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_1", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w1_xpcoins_green", + "S13-Quest:quest_s13_w1_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_2", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_2", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w2_xpcoins_green", + "S13-Quest:quest_s13_w2_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w3_xpcoins_blue", + "S13-Quest:quest_s13_w3_xpcoins_green", + "S13-Quest:quest_s13_w3_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w4_xpcoins_blue", + "S13-Quest:quest_s13_w4_xpcoins_green", + "S13-Quest:quest_s13_w4_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w5_xpcoins_blue", + "S13-Quest:quest_s13_w5_xpcoins_green", + "S13-Quest:quest_s13_w5_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w6_xpcoins_blue", + "S13-Quest:quest_s13_w6_xpcoins_green", + "S13-Quest:quest_s13_w6_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w7_xpcoins_blue", + "S13-Quest:quest_s13_w7_xpcoins_green", + "S13-Quest:quest_s13_w7_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8", + "templateId": "ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8", + "grantedquestinstanceids": [ + "S13-Quest:quest_s13_w8_xpcoins_blue", + "S13-Quest:quest_s13_w8_xpcoins_gold", + "S13-Quest:quest_s13_w8_xpcoins_green", + "S13-Quest:quest_s13_w8_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S13-ChallengeBundle:QuestBundle_S13_Styles", + "templateId": "ChallengeBundle:QuestBundle_S13_Styles", + "grantedquestinstanceids": [ + "S13-Quest:Quest_S13_Style_OceanRider_StyleC", + "S13-Quest:Quest_S13_Style_OceanRider_StyleB", + "S13-Quest:Quest_S13_Style_TacticalScuba_ColorB", + "S13-Quest:Quest_S13_Style_TacticalScuba_ColorC", + "S13-Quest:Quest_S13_Style_MechanicalEngineer_StyleB", + "S13-Quest:Quest_S13_Style_MechanicalEngineer_StyleC", + "S13-Quest:Quest_S13_Style_ProfessorPup_StyleB", + "S13-Quest:Quest_S13_Style_ProfessorPup_StyleC", + "S13-Quest:Quest_S13_Style_SpaceWanderer_ColorB", + "S13-Quest:Quest_S13_Style_SpaceWanderer_ColorC", + "S13-Quest:Quest_S13_Style_BlackKnight_ColorB", + "S13-Quest:Quest_S13_Style_BlackKnight_ColorC", + "S13-Quest:Quest_S13_Style_RacerZero_StyleB_Dummy", + "S13-Quest:Quest_S13_Style_RacerZero_StyleC_Dummy", + "S13-Quest:Quest_S13_Style_SandCastle_01", + "S13-Quest:Quest_S13_Style_SandCastle_02" + ], + "challenge_bundle_schedule_id": "S13-ChallengeBundleSchedule:Season13_Styles_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_01", + "templateId": "Quest:Quest_S13_BuildABrella_01", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_01", + "count": 55 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_02", + "templateId": "Quest:Quest_S13_BuildABrella_02", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_02", + "count": 35 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_03", + "templateId": "Quest:Quest_S13_BuildABrella_03", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_03", + "count": 15 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_04", + "templateId": "Quest:Quest_S13_BuildABrella_04", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_04", + "count": 75 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_05", + "templateId": "Quest:Quest_S13_BuildABrella_05", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_05", + "count": 95 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_06", + "templateId": "Quest:Quest_S13_BuildABrella_06", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_06", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_07", + "templateId": "Quest:Quest_S13_BuildABrella_07", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_07", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_08", + "templateId": "Quest:Quest_S13_BuildABrella_08", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_08", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_09", + "templateId": "Quest:Quest_S13_BuildABrella_09", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_09", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:Quest_S13_BuildABrella_10", + "templateId": "Quest:Quest_S13_BuildABrella_10", + "objectives": [ + { + "name": "Quest_S13_BuildABrella_10", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_BuildABrella" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q01", + "templateId": "Quest:quest_s13_w1_q01", + "objectives": [ + { + "name": "quest_s13_w1_q01_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q02", + "templateId": "Quest:quest_s13_w1_q02", + "objectives": [ + { + "name": "quest_s13_w1_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q03", + "templateId": "Quest:quest_s13_w1_q03", + "objectives": [ + { + "name": "quest_s13_w1_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q04", + "templateId": "Quest:quest_s13_w1_q04", + "objectives": [ + { + "name": "quest_s13_w1_q04_obj0", + "count": 1 + }, + { + "name": "quest_s13_w1_q04_obj1", + "count": 1 + }, + { + "name": "quest_s13_w1_q04_obj2", + "count": 1 + }, + { + "name": "quest_s13_w1_q04_obj3", + "count": 1 + }, + { + "name": "quest_s13_w1_q04_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q05", + "templateId": "Quest:quest_s13_w1_q05", + "objectives": [ + { + "name": "quest_s13_w1_q05_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q06", + "templateId": "Quest:quest_s13_w1_q06", + "objectives": [ + { + "name": "quest_s13_w1_q06_obj0", + "count": 1 + }, + { + "name": "quest_s13_w1_q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_q07", + "templateId": "Quest:quest_s13_w1_q07", + "objectives": [ + { + "name": "quest_s13_w1_q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q01", + "templateId": "Quest:quest_s13_w2_q01", + "objectives": [ + { + "name": "quest_s13_w2_q01_obj0", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj1", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj2", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj3", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj4", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj5", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj6", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q02", + "templateId": "Quest:quest_s13_w2_q02", + "objectives": [ + { + "name": "quest_s13_w2_q02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q03", + "templateId": "Quest:quest_s13_w2_q03", + "objectives": [ + { + "name": "quest_s13_w2_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_w2_q03_obj1", + "count": 1 + }, + { + "name": "quest_s13_w2_q03_obj2", + "count": 1 + }, + { + "name": "quest_s13_w2_q03_obj3", + "count": 1 + }, + { + "name": "quest_s13_w2_q03_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q04", + "templateId": "Quest:quest_s13_w2_q04", + "objectives": [ + { + "name": "quest_s13_w2_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q05", + "templateId": "Quest:quest_s13_w2_q05", + "objectives": [ + { + "name": "quest_s13_w2_q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q06", + "templateId": "Quest:quest_s13_w2_q06", + "objectives": [ + { + "name": "quest_s13_w2_q06_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_q07", + "templateId": "Quest:quest_s13_w2_q07", + "objectives": [ + { + "name": "quest_s13_w2_q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q01", + "templateId": "Quest:quest_s13_w3_q01", + "objectives": [ + { + "name": "quest_s13_w3_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q02", + "templateId": "Quest:quest_s13_w3_q02", + "objectives": [ + { + "name": "quest_s13_w3_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q03", + "templateId": "Quest:quest_s13_w3_q03", + "objectives": [ + { + "name": "quest_s13_w3_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_w3_q03_obj1", + "count": 1 + }, + { + "name": "quest_s13_w3_q03_obj2", + "count": 1 + }, + { + "name": "quest_s13_w3_q03_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q04", + "templateId": "Quest:quest_s13_w3_q04", + "objectives": [ + { + "name": "quest_s13_w3_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q05", + "templateId": "Quest:quest_s13_w3_q05", + "objectives": [ + { + "name": "quest_s13_w3_q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q06", + "templateId": "Quest:quest_s13_w3_q06", + "objectives": [ + { + "name": "quest_s13_w3_q06_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q07", + "templateId": "Quest:quest_s13_w3_q07", + "objectives": [ + { + "name": "quest_s13_w3_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_q08", + "templateId": "Quest:quest_s13_w3_q08", + "objectives": [ + { + "name": "quest_s13_w3_q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q01", + "templateId": "Quest:quest_s13_w4_q01", + "objectives": [ + { + "name": "quest_s13_w4_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q02", + "templateId": "Quest:quest_s13_w4_q02", + "objectives": [ + { + "name": "quest_s13_w4_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q03", + "templateId": "Quest:quest_s13_w4_q03", + "objectives": [ + { + "name": "quest_s13_w4_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_w4_q03_obj1", + "count": 1 + }, + { + "name": "quest_s13_w4_q03_obj2", + "count": 1 + }, + { + "name": "quest_s13_w4_q03_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q04", + "templateId": "Quest:quest_s13_w4_q04", + "objectives": [ + { + "name": "quest_s13_w4_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q05", + "templateId": "Quest:quest_s13_w4_q05", + "objectives": [ + { + "name": "quest_s13_w4_q05_obj0", + "count": 1 + }, + { + "name": "quest_s13_w4_q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q06", + "templateId": "Quest:quest_s13_w4_q06", + "objectives": [ + { + "name": "quest_s13_w4_q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q07", + "templateId": "Quest:quest_s13_w4_q07", + "objectives": [ + { + "name": "quest_s13_w4_q07_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q08", + "templateId": "Quest:quest_s13_w4_q08", + "objectives": [ + { + "name": "quest_s13_w4_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_q09", + "templateId": "Quest:quest_s13_w4_q09", + "objectives": [ + { + "name": "quest_s13_w4_q09_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q01", + "templateId": "Quest:quest_s13_w5_q01", + "objectives": [ + { + "name": "quest_s13_w5_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q02", + "templateId": "Quest:quest_s13_w5_q02", + "objectives": [ + { + "name": "quest_s13_w5_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q03", + "templateId": "Quest:quest_s13_w5_q03", + "objectives": [ + { + "name": "quest_s13_w5_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q04", + "templateId": "Quest:quest_s13_w5_q04", + "objectives": [ + { + "name": "quest_s13_w5_q04_obj0", + "count": 1 + }, + { + "name": "quest_s13_w5_q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q05", + "templateId": "Quest:quest_s13_w5_q05", + "objectives": [ + { + "name": "quest_s13_w5_q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q06", + "templateId": "Quest:quest_s13_w5_q06", + "objectives": [ + { + "name": "quest_s13_w5_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q07", + "templateId": "Quest:quest_s13_w5_q07", + "objectives": [ + { + "name": "quest_s13_w5_q07_obj0", + "count": 1 + }, + { + "name": "quest_s13_w5_q07_obj1", + "count": 1 + }, + { + "name": "quest_s13_w5_q07_obj2", + "count": 1 + }, + { + "name": "quest_s13_w5_q07_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_q08", + "templateId": "Quest:quest_s13_w5_q08", + "objectives": [ + { + "name": "quest_s13_w5_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q01", + "templateId": "Quest:quest_s13_w6_q01", + "objectives": [ + { + "name": "quest_s13_w6_q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q02", + "templateId": "Quest:quest_s13_w6_q02", + "objectives": [ + { + "name": "quest_s13_w6_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q03", + "templateId": "Quest:quest_s13_w6_q03", + "objectives": [ + { + "name": "quest_s13_w6_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_w6_q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q04", + "templateId": "Quest:quest_s13_w6_q04", + "objectives": [ + { + "name": "quest_s13_w6_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q05", + "templateId": "Quest:quest_s13_w6_q05", + "objectives": [ + { + "name": "quest_s13_w6_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q06", + "templateId": "Quest:quest_s13_w6_q06", + "objectives": [ + { + "name": "quest_s13_w6_q06_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q07", + "templateId": "Quest:quest_s13_w6_q07", + "objectives": [ + { + "name": "quest_s13_w6_q07_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q08", + "templateId": "Quest:quest_s13_w6_q08", + "objectives": [ + { + "name": "quest_s13_w6_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_q09", + "templateId": "Quest:quest_s13_w6_q09", + "objectives": [ + { + "name": "quest_s13_w6_q09_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_06" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q01", + "templateId": "Quest:quest_s13_w7_q01", + "objectives": [ + { + "name": "quest_s13_w7_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q02", + "templateId": "Quest:quest_s13_w7_q02", + "objectives": [ + { + "name": "quest_s13_w7_q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q03", + "templateId": "Quest:quest_s13_w7_q03", + "objectives": [ + { + "name": "quest_s13_w7_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_w7_q03_obj1", + "count": 1 + }, + { + "name": "quest_s13_w7_q03_obj2", + "count": 1 + }, + { + "name": "quest_s13_w7_q03_obj3", + "count": 1 + }, + { + "name": "quest_s13_w7_q03_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q04", + "templateId": "Quest:quest_s13_w7_q04", + "objectives": [ + { + "name": "quest_s13_w7_q04_obj0", + "count": 1 + }, + { + "name": "quest_s13_w7_q04_obj1", + "count": 1 + }, + { + "name": "quest_s13_w7_q04_obj2", + "count": 1 + }, + { + "name": "quest_s13_w7_q04_obj3", + "count": 1 + }, + { + "name": "quest_s13_w7_q04_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q05", + "templateId": "Quest:quest_s13_w7_q05", + "objectives": [ + { + "name": "quest_s13_w7_q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q06", + "templateId": "Quest:quest_s13_w7_q06", + "objectives": [ + { + "name": "quest_s13_w7_q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q07", + "templateId": "Quest:quest_s13_w7_q07", + "objectives": [ + { + "name": "quest_s13_w7_q07_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q08", + "templateId": "Quest:quest_s13_w7_q08", + "objectives": [ + { + "name": "quest_s13_w7_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_q09", + "templateId": "Quest:quest_s13_w7_q09", + "objectives": [ + { + "name": "quest_s13_w7_q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_07" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q01", + "templateId": "Quest:quest_s13_w8_q01", + "objectives": [ + { + "name": "quest_s13_w8_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q02", + "templateId": "Quest:quest_s13_w8_q02", + "objectives": [ + { + "name": "quest_s13_w8_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q03", + "templateId": "Quest:quest_s13_w8_q03", + "objectives": [ + { + "name": "quest_s13_w8_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q04", + "templateId": "Quest:quest_s13_w8_q04", + "objectives": [ + { + "name": "quest_s13_w8_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q05", + "templateId": "Quest:quest_s13_w8_q05", + "objectives": [ + { + "name": "quest_s13_w8_q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q06", + "templateId": "Quest:quest_s13_w8_q06", + "objectives": [ + { + "name": "quest_s13_w8_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q07", + "templateId": "Quest:quest_s13_w8_q07", + "objectives": [ + { + "name": "quest_s13_w8_q07_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_q08", + "templateId": "Quest:quest_s13_w8_q08", + "objectives": [ + { + "name": "quest_s13_w8_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_08" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q01", + "templateId": "Quest:quest_s13_w9_q01", + "objectives": [ + { + "name": "quest_s13_w9_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q02", + "templateId": "Quest:quest_s13_w9_q02", + "objectives": [ + { + "name": "quest_s13_w9_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q03", + "templateId": "Quest:quest_s13_w9_q03", + "objectives": [ + { + "name": "quest_s13_w9_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q04", + "templateId": "Quest:quest_s13_w9_q04", + "objectives": [ + { + "name": "quest_s13_w9_q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q05", + "templateId": "Quest:quest_s13_w9_q05", + "objectives": [ + { + "name": "quest_s13_w9_q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q06", + "templateId": "Quest:quest_s13_w9_q06", + "objectives": [ + { + "name": "quest_s13_w9_q06_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q07", + "templateId": "Quest:quest_s13_w9_q07", + "objectives": [ + { + "name": "quest_s13_w9_q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w9_q08", + "templateId": "Quest:quest_s13_w9_q08", + "objectives": [ + { + "name": "quest_s13_w9_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_09" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q01", + "templateId": "Quest:quest_s13_w10_q01", + "objectives": [ + { + "name": "quest_s13_w10_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q02", + "templateId": "Quest:quest_s13_w10_q02", + "objectives": [ + { + "name": "quest_s13_w10_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q03", + "templateId": "Quest:quest_s13_w10_q03", + "objectives": [ + { + "name": "quest_s13_w10_q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q04", + "templateId": "Quest:quest_s13_w10_q04", + "objectives": [ + { + "name": "quest_s13_w10_q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q05", + "templateId": "Quest:quest_s13_w10_q05", + "objectives": [ + { + "name": "quest_s13_w10_q05_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q06", + "templateId": "Quest:quest_s13_w10_q06", + "objectives": [ + { + "name": "quest_s13_w10_q06_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q07", + "templateId": "Quest:quest_s13_w10_q07", + "objectives": [ + { + "name": "quest_s13_w10_q07_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:quest_s13_w10_q08", + "templateId": "Quest:quest_s13_w10_q08", + "objectives": [ + { + "name": "quest_s13_w10_q08_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:MissionBundle_S13_Week_10" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_Explosives", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Chest", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Chest", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_Chest", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Elim", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Elim", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_Elim", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Fish", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Fish", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_Fish", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Land", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Land", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_Land", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_SupplyDrop", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_SupplyDrop", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_SupplyDrop", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Upgrade", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentFirst_Upgrade", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Acc_DifferentFirst_Upgrade", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Acc_DifferentFirst" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Achievements_01", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Achievements", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Achievements_02", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Achievements", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Achievements_03", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Achievements", + "count": 15 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Achievements_04", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Achievements", + "count": 30 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Achievements_05", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Achievements", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Achievements" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_01", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_02", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_03", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_04", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_05", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_CatchFish_06", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_CatchFish", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_CatchFish" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Blue_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Blue", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Blue_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Blue", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Blue_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Blue", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Blue_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Blue", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Blue_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Blue", + "count": 30 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Gold_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Gold", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Gold_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Gold", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Gold_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Gold", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Gold_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Gold", + "count": 7 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Gold_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Gold", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Green_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Green", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Green_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Green", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Green_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Green", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Green_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Green", + "count": 30 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Green_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Green", + "count": 40 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Green" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Purple_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Purple", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Purple_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Purple", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Purple_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Purple", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Purple_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Purple", + "count": 15 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Coins_Purple_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Coins_Purple", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_01", + "templateId": "Quest:Quest_S13_PunchCard_Damage_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_02", + "templateId": "Quest:Quest_S13_PunchCard_Damage_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 25000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_03", + "templateId": "Quest:Quest_S13_PunchCard_Damage_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 100000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_04", + "templateId": "Quest:Quest_S13_PunchCard_Damage_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 500000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_05", + "templateId": "Quest:Quest_S13_PunchCard_Damage_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 1000000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Damage_06", + "templateId": "Quest:Quest_S13_PunchCard_Damage_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Damage", + "count": 2500000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Damage" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DestroyTrees_01", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DestroyTrees", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DestroyTrees_02", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DestroyTrees", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DestroyTrees_03", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DestroyTrees", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DestroyTrees_04", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DestroyTrees", + "count": 10000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DestroyTrees_05", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DestroyTrees", + "count": 100000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DriveTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DriveTeammates", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DriveTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DriveTeammates", + "count": 25000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DriveTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DriveTeammates", + "count": 50000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DriveTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DriveTeammates", + "count": 100000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_DriveTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_DriveTeammates", + "count": 250000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim", + "count": 5000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Assault_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Assault", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Explosive_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Explosive", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Far_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Far", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Far_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Far", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Far_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Far", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Far_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Far", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Far" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Henchmen_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Henchmen", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Henchmen_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Henchmen", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Henchmen_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Henchmen", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Henchmen_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Henchmen", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Henchmen_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Henchmen_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Henchmen", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Henchmen" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Marauder_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Marauder", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Marauder_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Marauder", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Marauder_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Marauder", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Marauder_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Marauder", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Marauder_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Marauder_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Marauder", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Marauder" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pickaxe_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pickaxe_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pickaxe", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pickaxe" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Pistol_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Pistol", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shark_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shark_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shark", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shark" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Shotgun_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Shotgun", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_SMG_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_SMG", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Elim_Sniper_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Elim_Sniper", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_GoFishing_01", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_GoFishing", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_GoFishing_02", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_GoFishing", + "count": 15 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_GoFishing_03", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_GoFishing", + "count": 75 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_GoFishing_04", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_GoFishing", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_GoFishing_05", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_GoFishing", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_GoFishing" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_01", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_02", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 10000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_03", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 100000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_04", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 250000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_05", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 500000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Harvest_06", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Harvest", + "count": 1000000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Harvest" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MaxResources_01", + "templateId": "Quest:Quest_S13_PunchCard_MaxResources_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MaxResources", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MaxResources" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_01", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_02", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_03", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_04", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_05", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_MiniChallenges_06", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_MiniChallenges", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_01", + "templateId": "Quest:Quest_S13_PunchCard_Placement_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_02", + "templateId": "Quest:Quest_S13_PunchCard_Placement_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_03", + "templateId": "Quest:Quest_S13_PunchCard_Placement_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_04", + "templateId": "Quest:Quest_S13_PunchCard_Placement_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_05", + "templateId": "Quest:Quest_S13_PunchCard_Placement_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Placement_06", + "templateId": "Quest:Quest_S13_PunchCard_Placement_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Placement", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Placement" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardCompletions", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardCompletions", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardCompletions", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardCompletions", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardCompletions_05", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardCompletions", + "count": 40 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardPunches", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardPunches", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardPunches", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_PunchCardPunches_04", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_PunchCardPunches", + "count": 200 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RebootTeammates_06", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RebootTeammates", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ReviveTeammates_06", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ReviveTeammates", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_RideShark_01", + "templateId": "Quest:Quest_S13_PunchCard_RideShark_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_RideShark", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_RideShark" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 5000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_AmmoBoxes", + "count": 10000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 5000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Chests_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Chests", + "count": 10000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Chests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_Llamas_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_Llamas", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_RareChests_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_RareChests", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Search_SupplyDrops_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_06", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Search_SupplyDrops", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_SeasonLevel_01", + "templateId": "Quest:Quest_S13_PunchCard_SeasonLevel_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_SeasonLevel", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SeasonLevel" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Shakedowns_01", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Shakedowns", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Shakedowns_02", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Shakedowns", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Shakedowns_03", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Shakedowns", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_Shakedowns_04", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_Shakedowns", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_Shakedowns" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01", + "templateId": "Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ShootDownSupplyDrop", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ShootDownSupplyDrop" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_SidegradeWeapons_01", + "templateId": "Quest:Quest_S13_PunchCard_SidegradeWeapons_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_SidegradeWeapons", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_SidegradeWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ThankDriver_01", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ThankDriver", + "count": 3 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ThankDriver_02", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ThankDriver", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ThankDriver_03", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ThankDriver", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ThankDriver_04", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ThankDriver", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThankDriver" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_ThrowConsumable_01", + "templateId": "Quest:Quest_S13_PunchCard_ThrowConsumable_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_ThrowConsumable", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_ThrowConsumable" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_04", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons", + "count": 250 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseForaged_01", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseForaged", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseForaged_02", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseForaged", + "count": 25 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseForaged_03", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseForaged", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseForaged_04", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseForaged", + "count": 500 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseForaged_05", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseForaged", + "count": 1000 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseForaged" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_UseWhirlpool_01", + "templateId": "Quest:Quest_S13_PunchCard_UseWhirlpool_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_UseWhirlpool", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_UseWhirlpool" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeeklyChallenges", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeeklyChallenges", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeeklyChallenges", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeeklyChallenges", + "count": 40 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeeklyChallenges_05", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_05", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeeklyChallenges", + "count": 60 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WeirdlySpecific_01", + "templateId": "Quest:Quest_S13_PunchCard_WeirdlySpecific_01", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WeirdlySpecific", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WeirdlySpecific" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WinDifferentModes_Duo", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_LTM", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_LTM", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WinDifferentModes_LTM", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WinDifferentModes_Rumble", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WinDifferentModes_Solo", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S13-Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "objectives": [ + { + "name": "Quest_S13_PunchCard_WinDifferentModes_Squad", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S13-Quest:quest_s13_sandcastle_q01", + "templateId": "Quest:quest_s13_sandcastle_q01", + "objectives": [ + { + "name": "quest_s13_sandcastle_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_01" + }, + { + "itemGuid": "S13-Quest:quest_s13_sandcastle_q02", + "templateId": "Quest:quest_s13_sandcastle_q02", + "objectives": [ + { + "name": "quest_s13_sandcastle_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_02" + }, + { + "itemGuid": "S13-Quest:quest_s13_sandcastle_q03", + "templateId": "Quest:quest_s13_sandcastle_q03", + "objectives": [ + { + "name": "quest_s13_sandcastle_q03_obj0", + "count": 1 + }, + { + "name": "quest_s13_sandcastle_q03_obj1", + "count": 1 + }, + { + "name": "quest_s13_sandcastle_q03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_03" + }, + { + "itemGuid": "S13-Quest:quest_s13_sandcastle_q04", + "templateId": "Quest:quest_s13_sandcastle_q04", + "objectives": [ + { + "name": "quest_s13_sandcastle_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_04" + }, + { + "itemGuid": "S13-Quest:quest_s13_sandcastle_q05", + "templateId": "Quest:quest_s13_sandcastle_q05", + "objectives": [ + { + "name": "quest_s13_sandcastle_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_SandCastle_05" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_xpcoins_green", + "templateId": "Quest:quest_s13_w1_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w1_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj04", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj05", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj06", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj07", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_green_obj08", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_1" + }, + { + "itemGuid": "S13-Quest:quest_s13_w1_xpcoins_purple", + "templateId": "Quest:quest_s13_w1_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w1_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_purple_obj02", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_purple_obj03", + "count": 1 + }, + { + "name": "quest_s13_w1_xpcoins_purple_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_1" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_xpcoins_green", + "templateId": "Quest:quest_s13_w2_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w2_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj04", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj05", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj06", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj07", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_green_obj08", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_2" + }, + { + "itemGuid": "S13-Quest:quest_s13_w2_xpcoins_purple", + "templateId": "Quest:quest_s13_w2_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w2_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_purple_obj02", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_purple_obj03", + "count": 1 + }, + { + "name": "quest_s13_w2_xpcoins_purple_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_2" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_xpcoins_blue", + "templateId": "Quest:quest_s13_w3_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w3_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_xpcoins_green", + "templateId": "Quest:quest_s13_w3_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w3_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S13-Quest:quest_s13_w3_xpcoins_purple", + "templateId": "Quest:quest_s13_w3_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w3_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w3_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_xpcoins_blue", + "templateId": "Quest:quest_s13_w4_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w4_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_xpcoins_green", + "templateId": "Quest:quest_s13_w4_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w4_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S13-Quest:quest_s13_w4_xpcoins_purple", + "templateId": "Quest:quest_s13_w4_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w4_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w4_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_xpcoins_blue", + "templateId": "Quest:quest_s13_w5_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w5_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_xpcoins_green", + "templateId": "Quest:quest_s13_w5_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w5_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S13-Quest:quest_s13_w5_xpcoins_purple", + "templateId": "Quest:quest_s13_w5_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w5_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w5_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_xpcoins_blue", + "templateId": "Quest:quest_s13_w6_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w6_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_xpcoins_green", + "templateId": "Quest:quest_s13_w6_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w6_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S13-Quest:quest_s13_w6_xpcoins_purple", + "templateId": "Quest:quest_s13_w6_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w6_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w6_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_xpcoins_blue", + "templateId": "Quest:quest_s13_w7_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w7_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_xpcoins_green", + "templateId": "Quest:quest_s13_w7_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w7_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S13-Quest:quest_s13_w7_xpcoins_purple", + "templateId": "Quest:quest_s13_w7_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w7_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w7_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_xpcoins_blue", + "templateId": "Quest:quest_s13_w8_xpcoins_blue", + "objectives": [ + { + "name": "quest_s13_w8_xpcoins_blue_obj01", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_blue_obj02", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_blue_obj03", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_blue_obj04", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_blue_obj05", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_xpcoins_gold", + "templateId": "Quest:quest_s13_w8_xpcoins_gold", + "objectives": [ + { + "name": "quest_s13_w8_xpcoins_gold_obj01", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj02", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj03", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj04", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj05", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj06", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj07", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj08", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj09", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_gold_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_xpcoins_green", + "templateId": "Quest:quest_s13_w8_xpcoins_green", + "objectives": [ + { + "name": "quest_s13_w8_xpcoins_green_obj01", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_green_obj02", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_green_obj03", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_green_obj04", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S13-Quest:quest_s13_w8_xpcoins_purple", + "templateId": "Quest:quest_s13_w8_xpcoins_purple", + "objectives": [ + { + "name": "quest_s13_w8_xpcoins_purple_obj01", + "count": 1 + }, + { + "name": "quest_s13_w8_xpcoins_purple_obj02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_Event_S13_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_BlackKnight_ColorB", + "templateId": "Quest:Quest_S13_Style_BlackKnight_ColorB", + "objectives": [ + { + "name": "questobj_s13_style_blackknight_colorb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_BlackKnight_ColorC", + "templateId": "Quest:Quest_S13_Style_BlackKnight_ColorC", + "objectives": [ + { + "name": "questobj_s13_style_blackknight_colorc", + "count": 65 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_MechanicalEngineer_StyleB", + "templateId": "Quest:Quest_S13_Style_MechanicalEngineer_StyleB", + "objectives": [ + { + "name": "questobj_s13_style_mechanicalengineer_styleb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_MechanicalEngineer_StyleC", + "templateId": "Quest:Quest_S13_Style_MechanicalEngineer_StyleC", + "objectives": [ + { + "name": "questobj_s13_style_mechanicalengineer_stylec", + "count": 30 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_OceanRider_StyleB", + "templateId": "Quest:Quest_S13_Style_OceanRider_StyleB", + "objectives": [ + { + "name": "questobj_s13_style_oceanrider_styleb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_OceanRider_StyleC", + "templateId": "Quest:Quest_S13_Style_OceanRider_StyleC", + "objectives": [ + { + "name": "questobj_s13_style_oceanrider_stylec", + "count": 10 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_ProfessorPup_StyleB", + "templateId": "Quest:Quest_S13_Style_ProfessorPup_StyleB", + "objectives": [ + { + "name": "questobj_s13_style_professorpup_styleb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_ProfessorPup_StyleC", + "templateId": "Quest:Quest_S13_Style_ProfessorPup_StyleC", + "objectives": [ + { + "name": "questobj_s13_style_professorpup_stylec", + "count": 40 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_RacerZero_StyleB_Dummy", + "templateId": "Quest:Quest_S13_Style_RacerZero_StyleB_Dummy", + "objectives": [ + { + "name": "questobj_s13_style_racerzero_styleb_dummy", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_RacerZero_StyleC_Dummy", + "templateId": "Quest:Quest_S13_Style_RacerZero_StyleC_Dummy", + "objectives": [ + { + "name": "questobj_s13_style_racerzero_stylec_dummy", + "count": 100 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_SandCastle_01", + "templateId": "Quest:Quest_S13_Style_SandCastle_01", + "objectives": [ + { + "name": "questobj_s13_style_sandcastle_01", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_SandCastle_02", + "templateId": "Quest:Quest_S13_Style_SandCastle_02", + "objectives": [ + { + "name": "questobj_s13_style_sandcastle_02", + "count": 1 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_SpaceWanderer_ColorB", + "templateId": "Quest:Quest_S13_Style_SpaceWanderer_ColorB", + "objectives": [ + { + "name": "questobj_s13_style_spacewanderer_colorb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_SpaceWanderer_ColorC", + "templateId": "Quest:Quest_S13_Style_SpaceWanderer_ColorC", + "objectives": [ + { + "name": "questobj_s13_style_spacewanderer_colorc", + "count": 50 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_TacticalScuba_ColorB", + "templateId": "Quest:Quest_S13_Style_TacticalScuba_ColorB", + "objectives": [ + { + "name": "questobj_s13_style_tacticalscuba_colorb", + "count": 5 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + }, + { + "itemGuid": "S13-Quest:Quest_S13_Style_TacticalScuba_ColorC", + "templateId": "Quest:Quest_S13_Style_TacticalScuba_ColorC", + "objectives": [ + { + "name": "questobj_s13_style_tacticalscuba_colorc", + "count": 20 + } + ], + "challenge_bundle_id": "S13-ChallengeBundle:QuestBundle_S13_Styles" + } ] }, - { - "templateId": "Quest:Daily_HuskExtermination_Constructor", - "objectives": [ - "kill_husk_constructor_v2" + "Season14": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_01", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_01" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_02", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_02" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_03", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_03" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_04", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_04" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_05", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_05" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_06", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_06" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerDate_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerDate_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerGrapeB_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerGrapeB_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrapeB" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerGrape_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerGrape_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerHoneyDew_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerHoneyDew_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerMango_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerMango_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerSquash_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerSquash_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas1H_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas1H_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas1H" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTomato_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Awakenings_HightowerTomato_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season14_Feat_BundleSchedule", + "granted_bundles": [ + "S14-ChallengeBundle:Season14_Feat_Bundle" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_Mission_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:MissionBundle_S14_Week_01", + "S14-ChallengeBundle:MissionBundle_S14_Week_02", + "S14-ChallengeBundle:MissionBundle_S14_Week_03", + "S14-ChallengeBundle:MissionBundle_S14_Week_04", + "S14-ChallengeBundle:MissionBundle_S14_Week_05", + "S14-ChallengeBundle:MissionBundle_S14_Week_06", + "S14-ChallengeBundle:MissionBundle_S14_Week_07", + "S14-ChallengeBundle:MissionBundle_S14_Week_08", + "S14-ChallengeBundle:MissionBundle_S14_Week_09", + "S14-ChallengeBundle:MissionBundle_S14_Week_10", + "S14-ChallengeBundle:MissionBundle_S14_Week_11", + "S14-ChallengeBundle:MissionBundle_S14_Week_12", + "S14-ChallengeBundle:MissionBundle_S14_Week_13", + "S14-ChallengeBundle:MissionBundle_S14_Week_14" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_PunchCard_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SidegradeWeapons", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SeasonLevel", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ShootDownSupplyDrop", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MaxResources", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Rideshare", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_FireTrap", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_TomatoAssault", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WarmWestLaunch", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinWithFriend", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash", + "S14-ChallengeBundle:QuestBundle_S14_PunchCard_FishCollection" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect", + "templateId": "ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9", + "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_Fortnightmares", + "templateId": "ChallengeBundleSchedule:Season14_Schedule_Event_Fortnightmares", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Date_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Date_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Date" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Grape_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Grape_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Grape" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_HoneyDew_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_HoneyDew_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_HoneyDew" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Mango_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Mango_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Mango" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Squash_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Squash_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Squash" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Tapas_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Tapas_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tapas" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Tomato_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Tomato_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tomato" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Wasabi_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_G_Wasabi_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Wasabi" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Date_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Date_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Date" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Grape_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Grape_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Grape" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_HoneyDew_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_HoneyDew_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_HoneyDew" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Mango_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Mango_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Mango" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Squash_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Squash_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Squash" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Tapas_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Tapas_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tapas" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Tomato_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Tomato_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tomato" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Wasabi_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_H_Wasabi_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Wasabi" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Date_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Date_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Date" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Grape_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Grape_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Grape" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_HoneyDew_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_HoneyDew_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_HoneyDew" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Mango_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Mango_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Mango" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Squash_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Squash_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Squash" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Tapas_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Tapas_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tapas" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Tomato_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Tomato_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tomato" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Wasabi_Schedule", + "templateId": "ChallengeBundleSchedule:Season14_SuperLevel_S_Wasabi_Schedule", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Wasabi" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_01", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_01" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_02", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_02" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_03", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_03" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_04", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_04" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_05", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_05" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_06", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_06" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_07", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_07" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_08", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Wasabi_08" + ] + }, + { + "itemGuid": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season14_Wasabi_Schedule_09", + "granted_bundles": [ + "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerWasabi" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_01", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_01", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_HoneyDew_q01", + "S14-Quest:quest_style_HoneyDew_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_01" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_02", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_02", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_Squash_q01", + "S14-Quest:quest_style_Squash_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_02" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_03", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_03", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_WasabiB_q01", + "S14-Quest:quest_style_WasabiB_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_03" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_04", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_04", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_Date_q01", + "S14-Quest:quest_style_Date_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_04" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_05", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_05", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_Mango_q01", + "S14-Quest:quest_style_Mango_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_05" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_06", + "templateId": "ChallengeBundle:QuestBundle_S14_AlternateStyles_06", + "grantedquestinstanceids": [ + "S14-Quest:quest_style_WasabiC_q01", + "S14-Quest:quest_style_WasabiC_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_AlternateStyles_Schedule_06" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowerdate_q01", + "S14-Quest:quest_awakenings_hightowerdate_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowerdate_q03", + "S14-Quest:quest_awakenings_hightowerdate_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerDate_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrapeB", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrapeB", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowergrape_q01b", + "S14-Quest:quest_awakenings_hightowergrape_q02b" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerGrapeB_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowergrape_q01", + "S14-Quest:quest_awakenings_hightowergrape_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowergrape_q03" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerGrape_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowerhoneydew_q01", + "S14-Quest:quest_awakenings_hightowerhoneydew_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowerhoneydew_q03", + "S14-Quest:quest_awakenings_hightowerhoneydew_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerHoneyDew_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowermango_q01", + "S14-Quest:quest_awakenings_hightowermango_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowermango_q03", + "S14-Quest:quest_awakenings_hightowermango_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerMango_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowersquash_q01", + "S14-Quest:quest_awakenings_hightowersquash_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowersquash_q03", + "S14-Quest:quest_awakenings_hightowersquash_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerSquash_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas1H", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas1H", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowertapas1h_q01", + "S14-Quest:quest_awakenings_hightowertapas1h_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas1H_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowertapas_q01", + "S14-Quest:quest_awakenings_hightowertapas_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowertapas_q03", + "S14-Quest:quest_awakenings_hightowertapas_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTapas_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato", + "grantedquestinstanceids": [ + "S14-Quest:quest_awakenings_hightowertomato_q01", + "S14-Quest:quest_awakenings_hightowertomato_q02" + ], + "questStages": [ + "S14-Quest:quest_awakenings_hightowertomato_q03", + "S14-Quest:quest_awakenings_hightowertomato_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Awakenings_HightowerTomato_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:Season14_Feat_Bundle", + "templateId": "ChallengeBundle:Season14_Feat_Bundle", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_feat_accolade_expert_ar", + "S14-Quest:quest_s14_feat_accolade_expert_explosives", + "S14-Quest:quest_s14_feat_accolade_expert_pickaxe", + "S14-Quest:quest_s14_feat_accolade_expert_pistol", + "S14-Quest:quest_s14_feat_accolade_expert_shotgun", + "S14-Quest:quest_s14_feat_accolade_expert_smg", + "S14-Quest:quest_s14_feat_accolade_expert_sniper", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_2", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_3", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_4", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_5", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_6", + "S14-Quest:quest_s14_feat_accolade_weaponspecialist__samematch_7", + "S14-Quest:quest_s14_feat_athenarank_duo_100x", + "S14-Quest:quest_s14_feat_athenarank_duo_10x", + "S14-Quest:quest_s14_feat_athenarank_duo_1x", + "S14-Quest:quest_s14_feat_athenarank_rumble_100x", + "S14-Quest:quest_s14_feat_athenarank_rumble_1x", + "S14-Quest:quest_s14_feat_athenarank_solo_100x", + "S14-Quest:quest_s14_feat_athenarank_solo_10elims", + "S14-Quest:quest_s14_feat_athenarank_solo_10x", + "S14-Quest:quest_s14_feat_athenarank_solo_1x", + "S14-Quest:quest_s14_feat_athenarank_squad_100x", + "S14-Quest:quest_s14_feat_athenarank_squad_10x", + "S14-Quest:quest_s14_feat_athenarank_squad_1x", + "S14-Quest:quest_s14_feat_caught_goldfish", + "S14-Quest:quest_s14_feat_damage_dumpster_fire", + "S14-Quest:quest_s14_feat_death_goldfish", + "S14-Quest:quest_s14_feat_destroy_structures_fire", + "S14-Quest:quest_s14_feat_kill_afterharpoonpull", + "S14-Quest:quest_s14_feat_kill_aftersupplydrop", + "S14-Quest:quest_s14_feat_kill_flaregun", + "S14-Quest:quest_s14_feat_kill_gliding", + "S14-Quest:quest_s14_feat_kill_goldfish", + "S14-Quest:quest_s14_feat_kill_pickaxe", + "S14-Quest:quest_s14_feat_kill_rocketride", + "S14-Quest:quest_s14_feat_kill_yeet", + "S14-Quest:quest_s14_feat_land_firsttime", + "S14-Quest:quest_s14_feat_purplecoin_combo", + "S14-Quest:quest_s14_feat_throw_consumable", + "S14-Quest:quest_s14_feat_use_whirlpool", + "S14-Quest:quest_s14_feat_athenarank_hightowerhoneydew", + "S14-Quest:quest_s14_feat_awaken_hightowerdate", + "S14-Quest:quest_s14_feat_awaken_hightowergrape", + "S14-Quest:quest_s14_feat_awaken_hightowerhoneydew", + "S14-Quest:quest_s14_feat_awaken_hightowermango", + "S14-Quest:quest_s14_feat_awaken_hightowersquash", + "S14-Quest:quest_s14_feat_awaken_hightowertapas", + "S14-Quest:quest_s14_feat_awaken_hightowertomato", + "S14-Quest:quest_s14_feat_booth_disguise", + "S14-Quest:quest_s14_feat_destroy_structures_hightowerdate_balllightning", + "S14-Quest:quest_s14_feat_emote_battlecall_hightowerdate", + "S14-Quest:quest_s14_feat_emote_shapeshift_hightowermango", + "S14-Quest:quest_s14_feat_heal_eat_shield_caramel", + "S14-Quest:quest_s14_feat_heal_gain_shield", + "S14-Quest:quest_s14_feat_heal_health_hightowergrape_brambleshield", + "S14-Quest:quest_s14_feat_hit_pickaxe_hightowergrape", + "S14-Quest:quest_s14_feat_interact_upgrade_weapon", + "S14-Quest:quest_s14_feat_kill_hammer", + "S14-Quest:quest_s14_feat_kill_robots_hightowertomato", + "S14-Quest:quest_s14_feat_kill_rustycan", + "S14-Quest:quest_s14_feat_kill_singlematch_hightowerdate_lightning_gauntlet", + "S14-Quest:quest_s14_feat_kill_singlematch_hightowerwasabi", + "S14-Quest:quest_s14_feat_kill_storm_hightowersquash", + "S14-Quest:quest_s14_feat_reach_seasonlevel", + "S14-Quest:quest_s14_feat_use_soy_board", + "S14-Quest:quest_s14_feat_kill_chaplin_soy", + "S14-Quest:quest_s14_feat_kill_hightowertomato_repulsor_gauntlet", + "S14-Quest:quest_s14_feat_kill_hightowerwasabi_claw", + "S14-Quest:quest_s14_feat_kill_hightowerhoneydew_fist", + "S14-Quest:quest_s14_feat_destroy_structures_hightowerwasabi_claw", + "S14-Quest:quest_s14_feat_use_hightowersquash_whirlwindblast", + "S14-Quest:quest_s14_feat_kill_hightowertapas_hammer_strike", + "S14-Quest:quest_s14_feat_destroy_structures_hightowerhoneydew_fist", + "S14-Quest:quest_s14_feat_use_plum_kineticabsorption", + "S14-Quest:quest_s14_feat_grab_vertigo_superpunch_plus_grab", + "S14-Quest:quest_s14_feat_destroy_structures_singlematch_hightowertomato_repulsor_cannon", + "S14-Quest:quest_s14_feat_kill_singlematch_hightowerwasabi_claw", + "S14-Quest:quest_s14_feat_athenarank_match_hightowerltm", + "S14-Quest:quest_s14_feat_awaken_hightowerwasabi", + "S14-Quest:quest_s14_feat_kill_snipe_backspin", + "S14-Quest:quest_s14_feat_kill_hightowerwasabi", + "S14-Quest:quest_s14_feat_interact_vehicle_embers", + "S14-Quest:quest_s14_feat_land_squish", + "S14-Quest:quest_s14_feat_athenarank_nightmareroyale_arsenic", + "S14-Quest:quest_s14_feat_athenarank_victoryroyale_arsenic", + "S14-Quest:quest_s14_feat_interact_vehicle_shadow_arsenic", + "S14-Quest:quest_s14_feat_death_become_shadow_arsenic", + "S14-Quest:quest_s14_feat_death_shadows_arsenic", + "S14-Quest:quest_s14_feat_collect_candy_arsenic", + "S14-Quest:quest_s14_feat_kill_mangalpha_arsenic", + "S14-Quest:quest_s14_feat_collect_foraged_item", + "S14-Quest:quest_s14_feat_reviveplayer_vertigo" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Feat_BundleSchedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_01", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w1_q01", + "S14-Quest:quest_s14_w1_q02", + "S14-Quest:quest_s14_w1_q03", + "S14-Quest:quest_s14_w1_q04", + "S14-Quest:quest_s14_w1_q05", + "S14-Quest:quest_s14_w1_q06", + "S14-Quest:quest_s14_w1_q07", + "S14-Quest:quest_s14_w1_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_02", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w2_q01", + "S14-Quest:quest_s14_w2_q02", + "S14-Quest:quest_s14_w2_q03", + "S14-Quest:quest_s14_w2_q04", + "S14-Quest:quest_s14_w2_q05", + "S14-Quest:quest_s14_w2_q06", + "S14-Quest:quest_s14_w2_q07", + "S14-Quest:quest_s14_w2_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_03", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w3_q01", + "S14-Quest:quest_s14_w3_q02", + "S14-Quest:quest_s14_w3_q03", + "S14-Quest:quest_s14_w3_q04", + "S14-Quest:quest_s14_w3_q05", + "S14-Quest:quest_s14_w3_q06", + "S14-Quest:quest_s14_w3_q07", + "S14-Quest:quest_s14_w3_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_04", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w4_q01", + "S14-Quest:quest_s14_w4_q02", + "S14-Quest:quest_s14_w4_q03", + "S14-Quest:quest_s14_w4_q04", + "S14-Quest:quest_s14_w4_q05", + "S14-Quest:quest_s14_w4_q06", + "S14-Quest:quest_s14_w4_q07", + "S14-Quest:quest_s14_w4_q08", + "S14-Quest:quest_s14_w5_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_05", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w5_q01", + "S14-Quest:quest_s14_w5_q02", + "S14-Quest:quest_s14_w5_q03", + "S14-Quest:quest_s14_w5_q04", + "S14-Quest:quest_s14_w5_q05", + "S14-Quest:quest_s14_w5_q06", + "S14-Quest:quest_s14_w5_q07", + "S14-Quest:quest_s14_w5_q09" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_06", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w6_q01", + "S14-Quest:quest_s14_w6_q02", + "S14-Quest:quest_s14_w6_q03", + "S14-Quest:quest_s14_w6_q04", + "S14-Quest:quest_s14_w6_q05", + "S14-Quest:quest_s14_w6_q06", + "S14-Quest:quest_s14_w6_q07", + "S14-Quest:quest_s14_w6_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_07", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w7_q01", + "S14-Quest:quest_s14_w7_q02", + "S14-Quest:quest_s14_w7_q03", + "S14-Quest:quest_s14_w7_q04", + "S14-Quest:quest_s14_w7_q05", + "S14-Quest:quest_s14_w7_q06", + "S14-Quest:quest_s14_w7_q07", + "S14-Quest:quest_s14_w7_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_08", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w8_q01", + "S14-Quest:quest_s14_w8_q02", + "S14-Quest:quest_s14_w8_q03", + "S14-Quest:quest_s14_w8_q04", + "S14-Quest:quest_s14_w8_q05", + "S14-Quest:quest_s14_w8_q06", + "S14-Quest:quest_s14_w8_q07", + "S14-Quest:quest_s14_w8_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_09", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w9_q01", + "S14-Quest:quest_s14_w9_q02", + "S14-Quest:quest_s14_w9_q03", + "S14-Quest:quest_s14_w9_q04", + "S14-Quest:quest_s14_w9_q05", + "S14-Quest:quest_s14_w9_q06", + "S14-Quest:quest_s14_w9_q07", + "S14-Quest:quest_s14_w9_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_10", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w10_q01", + "S14-Quest:quest_s14_w10_q02", + "S14-Quest:quest_s14_w10_q03", + "S14-Quest:quest_s14_w10_q04", + "S14-Quest:quest_s14_w10_q05", + "S14-Quest:quest_s14_w10_q06", + "S14-Quest:quest_s14_w10_q07", + "S14-Quest:quest_s14_w10_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_11", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w11_q01_p1", + "S14-Quest:quest_s14_w11_q02_p1", + "S14-Quest:quest_s14_w11_q03_p1", + "S14-Quest:quest_s14_w11_q04_p1", + "S14-Quest:quest_s14_w11_q05", + "S14-Quest:quest_s14_w11_q06" + ], + "questStages": [ + "S14-Quest:quest_s14_w11_q01_p2", + "S14-Quest:quest_s14_w11_q01_p3", + "S14-Quest:quest_s14_w11_q02_p2", + "S14-Quest:quest_s14_w11_q02_p3", + "S14-Quest:quest_s14_w11_q03_p2", + "S14-Quest:quest_s14_w11_q03_p3", + "S14-Quest:quest_s14_w11_q04_p2", + "S14-Quest:quest_s14_w11_q04_p3" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_12", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w12_q01_p1", + "S14-Quest:quest_s14_w12_q02_p1", + "S14-Quest:quest_s14_w12_q03_p1", + "S14-Quest:quest_s14_w12_q04_p1", + "S14-Quest:quest_s14_w12_q05_p1", + "S14-Quest:quest_s14_w12_q06" + ], + "questStages": [ + "S14-Quest:quest_s14_w12_q01_p2", + "S14-Quest:quest_s14_w12_q01_p3", + "S14-Quest:quest_s14_w12_q02_p2", + "S14-Quest:quest_s14_w12_q02_p3", + "S14-Quest:quest_s14_w12_q03_p2", + "S14-Quest:quest_s14_w12_q03_p3", + "S14-Quest:quest_s14_w12_q04_p2", + "S14-Quest:quest_s14_w12_q04_p3" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_13", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w13_q01_p1", + "S14-Quest:quest_s14_w13_q02_p1", + "S14-Quest:quest_s14_w13_q03_p1", + "S14-Quest:quest_s14_w13_q04_p1", + "S14-Quest:quest_s14_w13_q05", + "S14-Quest:quest_s14_w13_q06" + ], + "questStages": [ + "S14-Quest:quest_s14_w13_q01_p2", + "S14-Quest:quest_s14_w13_q01_p3", + "S14-Quest:quest_s14_w13_q02_p2", + "S14-Quest:quest_s14_w13_q02_p3", + "S14-Quest:quest_s14_w13_q03_p2", + "S14-Quest:quest_s14_w13_q03_p3", + "S14-Quest:quest_s14_w13_q04_p2", + "S14-Quest:quest_s14_w13_q04_p3" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:MissionBundle_S14_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S14_Week_14", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w14_q01_p1", + "S14-Quest:quest_s14_w14_q02_p1", + "S14-Quest:quest_s14_w14_q03_p1", + "S14-Quest:quest_s14_w14_q04_p1", + "S14-Quest:quest_s14_w14_q05_p1", + "S14-Quest:quest_s14_w14_q06" + ], + "questStages": [ + "S14-Quest:quest_s14_w14_q01_p2", + "S14-Quest:quest_s14_w14_q01_p3", + "S14-Quest:quest_s14_w14_q02_p2", + "S14-Quest:quest_s14_w14_q02_p3", + "S14-Quest:quest_s14_w14_q03_p2", + "S14-Quest:quest_s14_w14_q03_p3", + "S14-Quest:quest_s14_w14_q04_p2", + "S14-Quest:quest_s14_w14_q04_p3", + "S14-Quest:quest_s14_w14_q05_p2", + "S14-Quest:quest_s14_w14_q05_p3", + "S14-Quest:quest_s14_w14_q05_p4", + "S14-Quest:quest_s14_w14_q05_p5" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Mission_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Achievements", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Achievements_01", + "S14-Quest:Quest_S13_PunchCard_Achievements_02", + "S14-Quest:Quest_S13_PunchCard_Achievements_03", + "S14-Quest:Quest_S13_PunchCard_Achievements_04", + "S14-Quest:Quest_S13_PunchCard_Achievements_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_CatchFish_01", + "S14-Quest:Quest_S13_PunchCard_CatchFish_02", + "S14-Quest:Quest_S13_PunchCard_CatchFish_03", + "S14-Quest:Quest_S13_PunchCard_CatchFish_04", + "S14-Quest:Quest_S13_PunchCard_CatchFish_05", + "S14-Quest:Quest_S13_PunchCard_CatchFish_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Coins_Blue_01", + "S14-Quest:Quest_S13_PunchCard_Coins_Blue_02", + "S14-Quest:Quest_S13_PunchCard_Coins_Blue_03", + "S14-Quest:Quest_S13_PunchCard_Coins_Blue_04", + "S14-Quest:Quest_S13_PunchCard_Coins_Blue_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Coins_Gold_01", + "S14-Quest:Quest_S13_PunchCard_Coins_Gold_02", + "S14-Quest:Quest_S13_PunchCard_Coins_Gold_03", + "S14-Quest:Quest_S13_PunchCard_Coins_Gold_04", + "S14-Quest:Quest_S13_PunchCard_Coins_Gold_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Coins_Green_01", + "S14-Quest:Quest_S13_PunchCard_Coins_Green_02", + "S14-Quest:Quest_S13_PunchCard_Coins_Green_03", + "S14-Quest:Quest_S13_PunchCard_Coins_Green_04", + "S14-Quest:Quest_S13_PunchCard_Coins_Green_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Coins_Purple_01", + "S14-Quest:Quest_S13_PunchCard_Coins_Purple_02", + "S14-Quest:Quest_S13_PunchCard_Coins_Purple_03", + "S14-Quest:Quest_S13_PunchCard_Coins_Purple_04", + "S14-Quest:Quest_S13_PunchCard_Coins_Purple_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Damage_01", + "S14-Quest:Quest_S13_PunchCard_Damage_02", + "S14-Quest:Quest_S13_PunchCard_Damage_03", + "S14-Quest:Quest_S13_PunchCard_Damage_04", + "S14-Quest:Quest_S13_PunchCard_Damage_05", + "S14-Quest:Quest_S13_PunchCard_Damage_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerDate_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerDate_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerDate_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerDate_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_01", + "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_02", + "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_03", + "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_01", + "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_02", + "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_03", + "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_DestroyTrees_01", + "S14-Quest:Quest_S13_PunchCard_DestroyTrees_02", + "S14-Quest:Quest_S13_PunchCard_DestroyTrees_03", + "S14-Quest:Quest_S13_PunchCard_DestroyTrees_04", + "S14-Quest:Quest_S13_PunchCard_DestroyTrees_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_DriveTeammates_01", + "S14-Quest:Quest_S13_PunchCard_DriveTeammates_02", + "S14-Quest:Quest_S13_PunchCard_DriveTeammates_03", + "S14-Quest:Quest_S13_PunchCard_DriveTeammates_04", + "S14-Quest:Quest_S13_PunchCard_DriveTeammates_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_01", + "S14-Quest:Quest_S13_PunchCard_Elim_02", + "S14-Quest:Quest_S13_PunchCard_Elim_03", + "S14-Quest:Quest_S13_PunchCard_Elim_04", + "S14-Quest:Quest_S13_PunchCard_Elim_05", + "S14-Quest:Quest_S13_PunchCard_Elim_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_04", + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_05", + "S14-Quest:Quest_S13_PunchCard_Elim_Assault_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Far_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Far_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Far_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Far_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_FireTrap", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_FireTrap", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Elim_FireTrap_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Elim_GasketDate_01", + "S14-Quest:Quest_PunchCard_Elim_GasketDate_02", + "S14-Quest:Quest_PunchCard_Elim_GasketDate_03", + "S14-Quest:Quest_PunchCard_Elim_GasketDate_04", + "S14-Quest:Quest_PunchCard_Elim_GasketDate_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Elim_GasketTomato_01", + "S14-Quest:Quest_PunchCard_Elim_GasketTomato_02", + "S14-Quest:Quest_PunchCard_Elim_GasketTomato_03", + "S14-Quest:Quest_PunchCard_Elim_GasketTomato_04", + "S14-Quest:Quest_PunchCard_Elim_GasketTomato_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Elim_Hardy_01", + "S14-Quest:Quest_PunchCard_Elim_Hardy_02", + "S14-Quest:Quest_PunchCard_Elim_Hardy_03", + "S14-Quest:Quest_PunchCard_Elim_Hardy_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_01", + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_02", + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_03", + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_04", + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_05", + "S14-Quest:Quest_S13_PunchCard_Elim_SMG_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_TomatoAssault", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Elim_TomatoAssault", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Elim_TomatoAssault_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_FishCollection", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_FishCollection", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_FishCollection_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_GoFishing_01", + "S14-Quest:Quest_S13_PunchCard_GoFishing_02", + "S14-Quest:Quest_S13_PunchCard_GoFishing_03", + "S14-Quest:Quest_S13_PunchCard_GoFishing_04", + "S14-Quest:Quest_S13_PunchCard_GoFishing_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Harvest", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Harvest_01", + "S14-Quest:Quest_S13_PunchCard_Harvest_02", + "S14-Quest:Quest_S13_PunchCard_Harvest_03", + "S14-Quest:Quest_S13_PunchCard_Harvest_04", + "S14-Quest:Quest_S13_PunchCard_Harvest_05", + "S14-Quest:Quest_S13_PunchCard_Harvest_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_01", + "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_02", + "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_03", + "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_HightowerSoyDistance_01", + "S14-Quest:Quest_PunchCard_HightowerSoyDistance_02", + "S14-Quest:Quest_PunchCard_HightowerSoyDistance_03", + "S14-Quest:Quest_PunchCard_HightowerSoyDistance_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_01", + "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_02", + "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_03", + "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_01", + "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_02", + "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_03", + "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MaxResources", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_MaxResources", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_MaxResources_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_01", + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_02", + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_03", + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_04", + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_05", + "S14-Quest:Quest_S13_PunchCard_MiniChallenges_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Placement", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Placement_01", + "S14-Quest:Quest_S13_PunchCard_Placement_02", + "S14-Quest:Quest_S13_PunchCard_Placement_03", + "S14-Quest:Quest_S13_PunchCard_Placement_04", + "S14-Quest:Quest_S13_PunchCard_Placement_05", + "S14-Quest:Quest_S13_PunchCard_Placement_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_01", + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_02", + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_03", + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_04", + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_05", + "S14-Quest:Quest_S13_PunchCard_RebootTeammates_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Rideshare", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Rideshare", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_Rideshare_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Search_Chests_01", + "S14-Quest:Quest_S13_PunchCard_Search_Chests_02", + "S14-Quest:Quest_S13_PunchCard_Search_Chests_03", + "S14-Quest:Quest_S13_PunchCard_Search_Chests_04", + "S14-Quest:Quest_S13_PunchCard_Search_Chests_05", + "S14-Quest:Quest_S13_PunchCard_Search_Chests_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_01", + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_02", + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_03", + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_04", + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_05", + "S14-Quest:Quest_S13_PunchCard_Search_Llamas_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_01", + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_02", + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_03", + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_04", + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_05", + "S14-Quest:Quest_S13_PunchCard_Search_RareChests_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SeasonLevel", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_SeasonLevel", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_SeasonLevel_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_Shakedowns_01", + "S14-Quest:Quest_S13_PunchCard_Shakedowns_02", + "S14-Quest:Quest_S13_PunchCard_Shakedowns_03", + "S14-Quest:Quest_S13_PunchCard_Shakedowns_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ShootDownSupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_ShootDownSupplyDrop", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SidegradeWeapons", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_SidegradeWeapons", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_SidegradeWeapons_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_ThankDriver_01", + "S14-Quest:Quest_S13_PunchCard_ThankDriver_02", + "S14-Quest:Quest_S13_PunchCard_ThankDriver_03", + "S14-Quest:Quest_S13_PunchCard_ThankDriver_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_UseForaged_01", + "S14-Quest:Quest_S13_PunchCard_UseForaged_02", + "S14-Quest:Quest_S13_PunchCard_UseForaged_03", + "S14-Quest:Quest_S13_PunchCard_UseForaged_04", + "S14-Quest:Quest_S13_PunchCard_UseForaged_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WarmWestLaunch", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_WarmWestLaunch", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_WarmWestLaunch_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes", + "grantedquestinstanceids": [ + "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_LTM" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinWithFriend", + "templateId": "ChallengeBundle:QuestBundle_S14_PunchCard_WinWithFriend", + "grantedquestinstanceids": [ + "S14-Quest:Quest_PunchCard_WinWithFriend_01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_PunchCard_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w1_xpcoins_blue", + "S14-Quest:quest_s14_w1_xpcoins_green", + "S14-Quest:quest_s14_w1_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w10_xpcoins_blue", + "S14-Quest:quest_s14_w10_xpcoins_gold", + "S14-Quest:quest_s14_w10_xpcoins_green", + "S14-Quest:quest_s14_w10_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w2_xpcoins_blue", + "S14-Quest:quest_s14_w2_xpcoins_green", + "S14-Quest:quest_s14_w2_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w3_xpcoins_blue", + "S14-Quest:quest_s14_w3_xpcoins_gold", + "S14-Quest:quest_s14_w3_xpcoins_green", + "S14-Quest:quest_s14_w3_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w4_xpcoins_blue", + "S14-Quest:quest_s14_w4_xpcoins_gold", + "S14-Quest:quest_s14_w4_xpcoins_green", + "S14-Quest:quest_s14_w4_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w5_xpcoins_blue", + "S14-Quest:quest_s14_w5_xpcoins_gold", + "S14-Quest:quest_s14_w5_xpcoins_green", + "S14-Quest:quest_s14_w5_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w6_xpcoins_blue", + "S14-Quest:quest_s14_w6_xpcoins_gold", + "S14-Quest:quest_s14_w6_xpcoins_green", + "S14-Quest:quest_s14_w6_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w7_xpcoins_blue", + "S14-Quest:quest_s14_w7_xpcoins_gold", + "S14-Quest:quest_s14_w7_xpcoins_green", + "S14-Quest:quest_s14_w7_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w8_xpcoins_blue", + "S14-Quest:quest_s14_w8_xpcoins_gold", + "S14-Quest:quest_s14_w8_xpcoins_green", + "S14-Quest:quest_s14_w8_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_w9_xpcoins_blue", + "S14-Quest:quest_s14_w9_xpcoins_gold", + "S14-Quest:quest_s14_w9_xpcoins_green", + "S14-Quest:quest_s14_w9_xpcoins_purple" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01", + "templateId": "ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_fortnightmares_q01", + "S14-Quest:quest_s14_fortnightmares_q02", + "S14-Quest:quest_s14_fortnightmares_q03", + "S14-Quest:quest_s14_fortnightmares_q04", + "S14-Quest:quest_s14_fortnightmares_q05", + "S14-Quest:quest_s14_fortnightmares_q06", + "S14-Quest:quest_s14_fortnightmares_q07", + "S14-Quest:quest_s14_fortnightmares_q08", + "S14-Quest:quest_s14_fortnightmares_q09" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Schedule_Event_Fortnightmares" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Date", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Date", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Date" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Date_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Grape", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Grape", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Grape" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Grape_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_HoneyDew", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_HoneyDew", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_HoneyDew" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_HoneyDew_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Mango", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Mango", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Mango" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Mango_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Squash", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Squash", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Squash" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Squash_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tapas", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tapas", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Tapas" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Tapas_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tomato", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tomato", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Tomato" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Tomato_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Wasabi", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_G_Wasabi", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_G_Wasabi" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_G_Wasabi_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Date", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Date", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Date" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Date_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Grape", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Grape", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Grape" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Grape_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_HoneyDew", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_HoneyDew", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_HoneyDew" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_HoneyDew_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Mango", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Mango", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Mango" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Mango_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Squash", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Squash", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Squash" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Squash_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tapas", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tapas", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Tapas" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Tapas_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tomato", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tomato", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Tomato" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Tomato_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Wasabi", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_H_Wasabi", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_H_Wasabi" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_H_Wasabi_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Date", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Date", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Date" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Date_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Grape", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Grape", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Grape" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Grape_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_HoneyDew", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_HoneyDew", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_HoneyDew" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_HoneyDew_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Mango", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Mango", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Mango" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Mango_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Squash", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Squash", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Squash" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Squash_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tapas", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tapas", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Tapas" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Tapas_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tomato", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tomato", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Tomato" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Tomato_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Wasabi", + "templateId": "ChallengeBundle:QuestBundle_S14_SuperLevel_S_Wasabi", + "grantedquestinstanceids": [ + "S14-Quest:quest_superlevel_S_Wasabi" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_SuperLevel_S_Wasabi_Schedule" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_01", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_01", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q01" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_01" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_02", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_02", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q02" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_02" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_03", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_03", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q03" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_03" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_04", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_04", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q04" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_04" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_05", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_05", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q05" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_05" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_06", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_06", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q06" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_06" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_07", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_07", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q07" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_07" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_08", + "templateId": "ChallengeBundle:QuestBundle_S14_Wasabi_08", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q08" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_08" + }, + { + "itemGuid": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerWasabi", + "templateId": "ChallengeBundle:QuestBundle_S14_Awakenings_HightowerWasabi", + "grantedquestinstanceids": [ + "S14-Quest:quest_s14_wasabi_q09a" + ], + "questStages": [ + "S14-Quest:quest_s14_wasabi_q09b" + ], + "challenge_bundle_schedule_id": "S14-ChallengeBundleSchedule:Season14_Wasabi_Schedule_09" + } + ], + "Quests": [ + { + "itemGuid": "S14-Quest:quest_style_HoneyDew_q01", + "templateId": "Quest:quest_style_HoneyDew_q01", + "objectives": [ + { + "name": "quest_style_honeydew_q01_obj01", + "count": 22 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_01" + }, + { + "itemGuid": "S14-Quest:quest_style_HoneyDew_q02", + "templateId": "Quest:quest_style_HoneyDew_q02", + "objectives": [ + { + "name": "quest_style_honeydew_q02_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_01" + }, + { + "itemGuid": "S14-Quest:quest_style_Squash_q01", + "templateId": "Quest:quest_style_Squash_q01", + "objectives": [ + { + "name": "quest_style_squash_q01_obj01", + "count": 53 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_02" + }, + { + "itemGuid": "S14-Quest:quest_style_Squash_q02", + "templateId": "Quest:quest_style_Squash_q02", + "objectives": [ + { + "name": "quest_style_squash_q02_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_02" + }, + { + "itemGuid": "S14-Quest:quest_style_WasabiB_q01", + "templateId": "Quest:quest_style_WasabiB_q01", + "objectives": [ + { + "name": "quest_style_wasabiB_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_03" + }, + { + "itemGuid": "S14-Quest:quest_style_WasabiB_q02", + "templateId": "Quest:quest_style_WasabiB_q02", + "objectives": [ + { + "name": "quest_style_wasabiB_q02_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_03" + }, + { + "itemGuid": "S14-Quest:quest_style_Date_q01", + "templateId": "Quest:quest_style_Date_q01", + "objectives": [ + { + "name": "quest_style_date_q01_obj01", + "count": 67 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_04" + }, + { + "itemGuid": "S14-Quest:quest_style_Date_q02", + "templateId": "Quest:quest_style_Date_q02", + "objectives": [ + { + "name": "quest_style_Date_q02_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_04" + }, + { + "itemGuid": "S14-Quest:quest_style_Mango_q01", + "templateId": "Quest:quest_style_Mango_q01", + "objectives": [ + { + "name": "quest_style_mango_q01_obj01", + "count": 80 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_05" + }, + { + "itemGuid": "S14-Quest:quest_style_Mango_q02", + "templateId": "Quest:quest_style_Mango_q02", + "objectives": [ + { + "name": "quest_style_Mango_q02_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_05" + }, + { + "itemGuid": "S14-Quest:quest_style_WasabiC_q01", + "templateId": "Quest:quest_style_WasabiC_q01", + "objectives": [ + { + "name": "quest_style_wasabiC_q01_obj01", + "count": 6 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_06" + }, + { + "itemGuid": "S14-Quest:quest_style_WasabiC_q02", + "templateId": "Quest:quest_style_WasabiC_q02", + "objectives": [ + { + "name": "quest_style_WasabiC_q02_obj01", + "count": 60 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_AlternateStyles_06" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerdate_q01", + "templateId": "Quest:quest_awakenings_hightowerdate_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowerdate_q01_obj0", + "count": 74 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerdate_q02", + "templateId": "Quest:quest_awakenings_hightowerdate_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowerdate_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerdate_q03", + "templateId": "Quest:quest_awakenings_hightowerdate_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowerdate_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerdate_q04", + "templateId": "Quest:quest_awakenings_hightowerdate_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowerdate_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerDate" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowergrape_q01b", + "templateId": "Quest:quest_awakenings_hightowergrape_q01b", + "objectives": [ + { + "name": "quest_awakenings_hightowergrape_q01b_obj0", + "count": 32 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrapeB" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowergrape_q02b", + "templateId": "Quest:quest_awakenings_hightowergrape_q02b", + "objectives": [ + { + "name": "quest_awakenings_hightowergrape_q02b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrapeB" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowergrape_q01", + "templateId": "Quest:quest_awakenings_hightowergrape_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowergrape_q01_obj0", + "count": 46 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowergrape_q02", + "templateId": "Quest:quest_awakenings_hightowergrape_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowergrape_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowergrape_q03", + "templateId": "Quest:quest_awakenings_hightowergrape_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowergrape_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerGrape" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerhoneydew_q01", + "templateId": "Quest:quest_awakenings_hightowerhoneydew_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowerhoneydew_q01_obj0", + "count": 29 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerhoneydew_q02", + "templateId": "Quest:quest_awakenings_hightowerhoneydew_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowerhoneydew_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerhoneydew_q03", + "templateId": "Quest:quest_awakenings_hightowerhoneydew_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowerhoneydew_q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowerhoneydew_q04", + "templateId": "Quest:quest_awakenings_hightowerhoneydew_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowerhoneydew_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowermango_q01", + "templateId": "Quest:quest_awakenings_hightowermango_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowermango_q01_obj0", + "count": 86 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowermango_q02", + "templateId": "Quest:quest_awakenings_hightowermango_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowermango_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowermango_q03", + "templateId": "Quest:quest_awakenings_hightowermango_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowermango_q02_obj0", + "count": 1 + }, + { + "name": "quest_awakenings_hightowermango_q02_obj1", + "count": 1 + }, + { + "name": "quest_awakenings_hightowermango_q02_obj2", + "count": 1 + }, + { + "name": "quest_awakenings_hightowermango_q02_obj3", + "count": 1 + }, + { + "name": "quest_awakenings_hightowermango_q02_obj4", + "count": 1 + }, + { + "name": "quest_awakenings_hightowermango_q02_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowermango_q04", + "templateId": "Quest:quest_awakenings_hightowermango_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowermango_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerMango" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowersquash_q01", + "templateId": "Quest:quest_awakenings_hightowersquash_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowersquash_q01_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowersquash_q02", + "templateId": "Quest:quest_awakenings_hightowersquash_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowersquash_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowersquash_q03", + "templateId": "Quest:quest_awakenings_hightowersquash_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowersquash_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowersquash_q04", + "templateId": "Quest:quest_awakenings_hightowersquash_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowersquash_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas1h_q01", + "templateId": "Quest:quest_awakenings_hightowertapas1h_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas1h_q01_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas1H" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas1h_q02", + "templateId": "Quest:quest_awakenings_hightowertapas1h_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas1h_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas1H" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas_q01", + "templateId": "Quest:quest_awakenings_hightowertapas_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas_q01_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas_q02", + "templateId": "Quest:quest_awakenings_hightowertapas_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas_q03", + "templateId": "Quest:quest_awakenings_hightowertapas_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas_q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertapas_q04", + "templateId": "Quest:quest_awakenings_hightowertapas_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowertapas_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertomato_q01", + "templateId": "Quest:quest_awakenings_hightowertomato_q01", + "objectives": [ + { + "name": "quest_awakenings_hightowertomato_q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertomato_q02", + "templateId": "Quest:quest_awakenings_hightowertomato_q02", + "objectives": [ + { + "name": "quest_awakenings_hightowertomato_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertomato_q03", + "templateId": "Quest:quest_awakenings_hightowertomato_q03", + "objectives": [ + { + "name": "quest_awakenings_hightowertomato_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:quest_awakenings_hightowertomato_q04", + "templateId": "Quest:quest_awakenings_hightowertomato_q04", + "objectives": [ + { + "name": "quest_awakenings_hightowertomato_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q01", + "templateId": "Quest:quest_s14_w1_q01", + "objectives": [ + { + "name": "quest_s14_w1_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q02", + "templateId": "Quest:quest_s14_w1_q02", + "objectives": [ + { + "name": "quest_s14_w1_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q03", + "templateId": "Quest:quest_s14_w1_q03", + "objectives": [ + { + "name": "quest_s14_w1_q03_obj0", + "count": 1 + }, + { + "name": "quest_s14_w1_q03_obj1", + "count": 1 + }, + { + "name": "quest_s14_w1_q03_obj2", + "count": 1 + }, + { + "name": "quest_s14_w1_q03_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q04", + "templateId": "Quest:quest_s14_w1_q04", + "objectives": [ + { + "name": "quest_s14_w1_q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q05", + "templateId": "Quest:quest_s14_w1_q05", + "objectives": [ + { + "name": "quest_s14_w1_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q06", + "templateId": "Quest:quest_s14_w1_q06", + "objectives": [ + { + "name": "quest_s14_w1_q06_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q07", + "templateId": "Quest:quest_s14_w1_q07", + "objectives": [ + { + "name": "quest_s14_w1_q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_q08", + "templateId": "Quest:quest_s14_w1_q08", + "objectives": [ + { + "name": "quest_s14_w1_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q01", + "templateId": "Quest:quest_s14_w2_q01", + "objectives": [ + { + "name": "quest_s14_w2_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q02", + "templateId": "Quest:quest_s14_w2_q02", + "objectives": [ + { + "name": "quest_s14_w2_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q03", + "templateId": "Quest:quest_s14_w2_q03", + "objectives": [ + { + "name": "quest_s14_w2_q03_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_q03_obj1", + "count": 1 + }, + { + "name": "quest_s14_w2_q03_obj2", + "count": 1 + }, + { + "name": "quest_s14_w2_q03_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q04", + "templateId": "Quest:quest_s14_w2_q04", + "objectives": [ + { + "name": "quest_s14_w2_q04_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q05", + "templateId": "Quest:quest_s14_w2_q05", + "objectives": [ + { + "name": "quest_s14_w2_q05_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_q05_obj1", + "count": 1 + }, + { + "name": "quest_s14_w2_q05_obj2", + "count": 1 + }, + { + "name": "quest_s14_w2_q05_obj3", + "count": 1 + }, + { + "name": "quest_s14_w2_q05_obj4", + "count": 1 + }, + { + "name": "quest_s14_w2_q05_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q06", + "templateId": "Quest:quest_s14_w2_q06", + "objectives": [ + { + "name": "quest_s14_w2_q06_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_q06_obj1", + "count": 1 + }, + { + "name": "quest_s14_w2_q06_obj2", + "count": 1 + }, + { + "name": "quest_s14_w2_q06_obj3", + "count": 1 + }, + { + "name": "quest_s14_w2_q06_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q07", + "templateId": "Quest:quest_s14_w2_q07", + "objectives": [ + { + "name": "quest_s14_w2_q07_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_q08", + "templateId": "Quest:quest_s14_w2_q08", + "objectives": [ + { + "name": "quest_s14_w2_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q01", + "templateId": "Quest:quest_s14_w3_q01", + "objectives": [ + { + "name": "quest_s14_w3_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q02", + "templateId": "Quest:quest_s14_w3_q02", + "objectives": [ + { + "name": "quest_s14_w3_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q03", + "templateId": "Quest:quest_s14_w3_q03", + "objectives": [ + { + "name": "quest_s14_w3_q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q04", + "templateId": "Quest:quest_s14_w3_q04", + "objectives": [ + { + "name": "quest_s14_w3_q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q05", + "templateId": "Quest:quest_s14_w3_q05", + "objectives": [ + { + "name": "quest_s14_w3_q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q06", + "templateId": "Quest:quest_s14_w3_q06", + "objectives": [ + { + "name": "quest_s14_w3_q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q07", + "templateId": "Quest:quest_s14_w3_q07", + "objectives": [ + { + "name": "quest_s14_w3_q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_q08", + "templateId": "Quest:quest_s14_w3_q08", + "objectives": [ + { + "name": "quest_s14_w3_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q01", + "templateId": "Quest:quest_s14_w4_q01", + "objectives": [ + { + "name": "quest_s14_w4_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q02", + "templateId": "Quest:quest_s14_w4_q02", + "objectives": [ + { + "name": "quest_s14_w4_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q03", + "templateId": "Quest:quest_s14_w4_q03", + "objectives": [ + { + "name": "quest_s14_w4_q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q04", + "templateId": "Quest:quest_s14_w4_q04", + "objectives": [ + { + "name": "quest_s14_w4_q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q05", + "templateId": "Quest:quest_s14_w4_q05", + "objectives": [ + { + "name": "quest_s14_w4_q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q06", + "templateId": "Quest:quest_s14_w4_q06", + "objectives": [ + { + "name": "quest_s14_w4_q06_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q07", + "templateId": "Quest:quest_s14_w4_q07", + "objectives": [ + { + "name": "quest_s14_w4_q07_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_q08", + "templateId": "Quest:quest_s14_w4_q08", + "objectives": [ + { + "name": "quest_s14_w4_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q08", + "templateId": "Quest:quest_s14_w5_q08", + "objectives": [ + { + "name": "quest_s14_w5_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q01", + "templateId": "Quest:quest_s14_w5_q01", + "objectives": [ + { + "name": "quest_s14_w5_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q02", + "templateId": "Quest:quest_s14_w5_q02", + "objectives": [ + { + "name": "quest_s14_w5_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q03", + "templateId": "Quest:quest_s14_w5_q03", + "objectives": [ + { + "name": "quest_s14_w5_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q04", + "templateId": "Quest:quest_s14_w5_q04", + "objectives": [ + { + "name": "quest_s14_w5_q04_obj0", + "count": 1 + }, + { + "name": "quest_s14_w5_q04_obj1", + "count": 1 + }, + { + "name": "quest_s14_w5_q04_obj2", + "count": 1 + }, + { + "name": "quest_s14_w5_q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q05", + "templateId": "Quest:quest_s14_w5_q05", + "objectives": [ + { + "name": "quest_s14_w5_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q06", + "templateId": "Quest:quest_s14_w5_q06", + "objectives": [ + { + "name": "quest_s14_w5_q06_obj0", + "count": 1 + }, + { + "name": "quest_s14_w5_q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q07", + "templateId": "Quest:quest_s14_w5_q07", + "objectives": [ + { + "name": "quest_s14_w5_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_q09", + "templateId": "Quest:quest_s14_w5_q09", + "objectives": [ + { + "name": "quest_s14_w5_q09_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q01", + "templateId": "Quest:quest_s14_w6_q01", + "objectives": [ + { + "name": "quest_s14_w6_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q02", + "templateId": "Quest:quest_s14_w6_q02", + "objectives": [ + { + "name": "quest_s14_w6_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q03", + "templateId": "Quest:quest_s14_w6_q03", + "objectives": [ + { + "name": "quest_s14_w6_q03_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q04", + "templateId": "Quest:quest_s14_w6_q04", + "objectives": [ + { + "name": "quest_s14_w6_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q05", + "templateId": "Quest:quest_s14_w6_q05", + "objectives": [ + { + "name": "quest_s14_w6_q05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q06", + "templateId": "Quest:quest_s14_w6_q06", + "objectives": [ + { + "name": "quest_s14_w6_q06_obj0", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj1", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj2", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj3", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj4", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj5", + "count": 1 + }, + { + "name": "quest_s13_w2_q01_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q07", + "templateId": "Quest:quest_s14_w6_q07", + "objectives": [ + { + "name": "quest_s14_w6_q07_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_q08", + "templateId": "Quest:quest_s14_w6_q08", + "objectives": [ + { + "name": "quest_s14_w6_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q01", + "templateId": "Quest:quest_s14_w7_q01", + "objectives": [ + { + "name": "quest_s14_w7_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q02", + "templateId": "Quest:quest_s14_w7_q02", + "objectives": [ + { + "name": "quest_s14_w7_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q03", + "templateId": "Quest:quest_s14_w7_q03", + "objectives": [ + { + "name": "quest_s14_w7_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q04", + "templateId": "Quest:quest_s14_w7_q04", + "objectives": [ + { + "name": "quest_s14_w7_q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q05", + "templateId": "Quest:quest_s14_w7_q05", + "objectives": [ + { + "name": "quest_s14_w7_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q06", + "templateId": "Quest:quest_s14_w7_q06", + "objectives": [ + { + "name": "quest_s14_w7_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q07", + "templateId": "Quest:quest_s14_w7_q07", + "objectives": [ + { + "name": "quest_s14_w7_q07_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_q08", + "templateId": "Quest:quest_s14_w7_q08", + "objectives": [ + { + "name": "quest_s14_w7_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q01", + "templateId": "Quest:quest_s14_w8_q01", + "objectives": [ + { + "name": "quest_s14_w8_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q02", + "templateId": "Quest:quest_s14_w8_q02", + "objectives": [ + { + "name": "quest_s14_w8_q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q03", + "templateId": "Quest:quest_s14_w8_q03", + "objectives": [ + { + "name": "quest_s14_w8_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q04", + "templateId": "Quest:quest_s14_w8_q04", + "objectives": [ + { + "name": "quest_s14_w8_q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q05", + "templateId": "Quest:quest_s14_w8_q05", + "objectives": [ + { + "name": "quest_s14_w8_q05_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q06", + "templateId": "Quest:quest_s14_w8_q06", + "objectives": [ + { + "name": "quest_s14_w8_q06_obj0", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj1", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj2", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj3", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj4", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj5", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj6", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj7", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj8", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj9", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj10", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj11", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj12", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj13", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj14", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj15", + "count": 1 + }, + { + "name": "quest_s14_w8_q06_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q07", + "templateId": "Quest:quest_s14_w8_q07", + "objectives": [ + { + "name": "quest_s14_w8_q07_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_q08", + "templateId": "Quest:quest_s14_w8_q08", + "objectives": [ + { + "name": "quest_s14_w8_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q01", + "templateId": "Quest:quest_s14_w9_q01", + "objectives": [ + { + "name": "quest_s14_w9_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q02", + "templateId": "Quest:quest_s14_w9_q02", + "objectives": [ + { + "name": "quest_s14_w9_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q03", + "templateId": "Quest:quest_s14_w9_q03", + "objectives": [ + { + "name": "quest_s14_w9_q03_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_q03_obj1", + "count": 1 + }, + { + "name": "quest_s14_w9_q03_obj2", + "count": 1 + }, + { + "name": "quest_s14_w9_q03_obj3", + "count": 1 + }, + { + "name": "quest_s14_w9_q03_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q04", + "templateId": "Quest:quest_s14_w9_q04", + "objectives": [ + { + "name": "quest_s14_w9_q04_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q05", + "templateId": "Quest:quest_s14_w9_q05", + "objectives": [ + { + "name": "quest_s14_w9_q05_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q06", + "templateId": "Quest:quest_s14_w9_q06", + "objectives": [ + { + "name": "quest_s14_w9_q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q07", + "templateId": "Quest:quest_s14_w9_q07", + "objectives": [ + { + "name": "quest_s14_w9_q07_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_q08", + "templateId": "Quest:quest_s14_w9_q08", + "objectives": [ + { + "name": "quest_s14_w9_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_09" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q01", + "templateId": "Quest:quest_s14_w10_q01", + "objectives": [ + { + "name": "quest_s14_w10_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q02", + "templateId": "Quest:quest_s14_w10_q02", + "objectives": [ + { + "name": "quest_s14_w10_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q03", + "templateId": "Quest:quest_s14_w10_q03", + "objectives": [ + { + "name": "quest_s14_w10_q03_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q04", + "templateId": "Quest:quest_s14_w10_q04", + "objectives": [ + { + "name": "quest_s14_w10_q04_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q05", + "templateId": "Quest:quest_s14_w10_q05", + "objectives": [ + { + "name": "quest_s14_w10_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q06", + "templateId": "Quest:quest_s14_w10_q06", + "objectives": [ + { + "name": "quest_s14_w10_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q07", + "templateId": "Quest:quest_s14_w10_q07", + "objectives": [ + { + "name": "quest_s14_w10_q07_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_q08", + "templateId": "Quest:quest_s14_w10_q08", + "objectives": [ + { + "name": "quest_s14_w10_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q01_p1", + "templateId": "Quest:quest_s14_w11_q01_p1", + "objectives": [ + { + "name": "quest_s14_w11_q01_p1_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q01_p2", + "templateId": "Quest:quest_s14_w11_q01_p2", + "objectives": [ + { + "name": "quest_s14_w11_q01_p2_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q01_p3", + "templateId": "Quest:quest_s14_w11_q01_p3", + "objectives": [ + { + "name": "quest_s14_w11_q01_p3_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q02_p1", + "templateId": "Quest:quest_s14_w11_q02_p1", + "objectives": [ + { + "name": "quest_s14_w11_q02_p1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q02_p2", + "templateId": "Quest:quest_s14_w11_q02_p2", + "objectives": [ + { + "name": "quest_s14_w11_q02_p2_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q02_p3", + "templateId": "Quest:quest_s14_w11_q02_p3", + "objectives": [ + { + "name": "quest_s14_w11_q02_p3_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q03_p1", + "templateId": "Quest:quest_s14_w11_q03_p1", + "objectives": [ + { + "name": "quest_s14_w11_q03_p1_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q03_p2", + "templateId": "Quest:quest_s14_w11_q03_p2", + "objectives": [ + { + "name": "quest_s14_w11_q03_p2_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q03_p3", + "templateId": "Quest:quest_s14_w11_q03_p3", + "objectives": [ + { + "name": "quest_s14_w11_q03_p3_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q04_p1", + "templateId": "Quest:quest_s14_w11_q04_p1", + "objectives": [ + { + "name": "quest_s14_w11_q04_p1_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q04_p2", + "templateId": "Quest:quest_s14_w11_q04_p2", + "objectives": [ + { + "name": "quest_s14_w11_q04_p2_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q04_p3", + "templateId": "Quest:quest_s14_w11_q04_p3", + "objectives": [ + { + "name": "quest_s14_w11_q04_p3_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q05", + "templateId": "Quest:quest_s14_w11_q05", + "objectives": [ + { + "name": "quest_s14_w11_q05_obj0", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj1", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj2", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj3", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj4", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj5", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj6", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj7", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj8", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj9", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj10", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj11", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj12", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj13", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj14", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj15", + "count": 1 + }, + { + "name": "quest_s14_w11_q05_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w11_q06", + "templateId": "Quest:quest_s14_w11_q06", + "objectives": [ + { + "name": "quest_s14_w11_q06_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_11" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q01_p1", + "templateId": "Quest:quest_s14_w12_q01_p1", + "objectives": [ + { + "name": "quest_s14_w12_q01_p1", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q01_p2", + "templateId": "Quest:quest_s14_w12_q01_p2", + "objectives": [ + { + "name": "quest_s14_w12_q01_p2", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q01_p3", + "templateId": "Quest:quest_s14_w12_q01_p3", + "objectives": [ + { + "name": "quest_s14_w12_q01_p3", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q02_p1", + "templateId": "Quest:quest_s14_w12_q02_p1", + "objectives": [ + { + "name": "quest_s14_w12_q02_p1", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q02_p2", + "templateId": "Quest:quest_s14_w12_q02_p2", + "objectives": [ + { + "name": "quest_s14_w12_q02_p2", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q02_p3", + "templateId": "Quest:quest_s14_w12_q02_p3", + "objectives": [ + { + "name": "quest_s14_w12_q02_p3", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q03_p1", + "templateId": "Quest:quest_s14_w12_q03_p1", + "objectives": [ + { + "name": "quest_s14_w12_q03_p1", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q03_p2", + "templateId": "Quest:quest_s14_w12_q03_p2", + "objectives": [ + { + "name": "quest_s14_w12_q03_p2", + "count": 150 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q03_p3", + "templateId": "Quest:quest_s14_w12_q03_p3", + "objectives": [ + { + "name": "quest_s14_w12_q03_p3", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q04_p1", + "templateId": "Quest:quest_s14_w12_q04_p1", + "objectives": [ + { + "name": "quest_s14_w12_q04_p1", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q04_p2", + "templateId": "Quest:quest_s14_w12_q04_p2", + "objectives": [ + { + "name": "quest_s14_w12_q04_p2", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q04_p3", + "templateId": "Quest:quest_s14_w12_q04_p3", + "objectives": [ + { + "name": "quest_s14_w12_q04_p3", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q05_p1", + "templateId": "Quest:quest_s14_w12_q05_p1", + "objectives": [ + { + "name": "quest_s14_w12_q05_p1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w12_q06", + "templateId": "Quest:quest_s14_w12_q06", + "objectives": [ + { + "name": "quest_s14_w12_q06_p1", + "count": 30 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_12" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q01_p1", + "templateId": "Quest:quest_s14_w13_q01_p1", + "objectives": [ + { + "name": "quest_s14_w13_q01_p1_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q01_p2", + "templateId": "Quest:quest_s14_w13_q01_p2", + "objectives": [ + { + "name": "quest_s14_w13_q01_p2_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q01_p3", + "templateId": "Quest:quest_s14_w13_q01_p3", + "objectives": [ + { + "name": "quest_s14_w13_q01_p3_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q02_p1", + "templateId": "Quest:quest_s14_w13_q02_p1", + "objectives": [ + { + "name": "quest_s14_w13_q02_p1_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q02_p2", + "templateId": "Quest:quest_s14_w13_q02_p2", + "objectives": [ + { + "name": "quest_s14_w13_q02_p2_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q02_p3", + "templateId": "Quest:quest_s14_w13_q02_p3", + "objectives": [ + { + "name": "quest_s14_w13_q02_p3_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q03_p1", + "templateId": "Quest:quest_s14_w13_q03_p1", + "objectives": [ + { + "name": "quest_s14_w13_q03_p1_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q03_p2", + "templateId": "Quest:quest_s14_w13_q03_p2", + "objectives": [ + { + "name": "quest_s14_w13_q03_p2_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q03_p3", + "templateId": "Quest:quest_s14_w13_q03_p3", + "objectives": [ + { + "name": "quest_s14_w13_q03_p3_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q04_p1", + "templateId": "Quest:quest_s14_w13_q04_p1", + "objectives": [ + { + "name": "quest_s14_w13_q04_p1_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q04_p2", + "templateId": "Quest:quest_s14_w13_q04_p2", + "objectives": [ + { + "name": "quest_s14_w13_q04_p2_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q04_p3", + "templateId": "Quest:quest_s14_w13_q04_p3", + "objectives": [ + { + "name": "quest_s14_w13_q04_p3_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q05", + "templateId": "Quest:quest_s14_w13_q05", + "objectives": [ + { + "name": "quest_s14_w13_q05_obj0", + "count": 1 + }, + { + "name": "quest_s14_w13_q05_obj1", + "count": 1 + }, + { + "name": "quest_s14_w13_q05_obj2", + "count": 1 + }, + { + "name": "quest_s14_w13_q05_obj3", + "count": 1 + }, + { + "name": "quest_s14_w13_q05_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w13_q06", + "templateId": "Quest:quest_s14_w13_q06", + "objectives": [ + { + "name": "quest_s14_w13_q06_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_13" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q01_p1", + "templateId": "Quest:quest_s14_w14_q01_p1", + "objectives": [ + { + "name": "quest_s14_w14_q01_p1", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q01_p2", + "templateId": "Quest:quest_s14_w14_q01_p2", + "objectives": [ + { + "name": "quest_s14_w14_q01_p2", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q01_p3", + "templateId": "Quest:quest_s14_w14_q01_p3", + "objectives": [ + { + "name": "quest_s14_w14_q01_p3", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q02_p1", + "templateId": "Quest:quest_s14_w14_q02_p1", + "objectives": [ + { + "name": "quest_s14_w14_q02_p1_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q02_p2", + "templateId": "Quest:quest_s14_w14_q02_p2", + "objectives": [ + { + "name": "quest_s14_w14_q02_p2_obj1", + "count": 9 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q02_p3", + "templateId": "Quest:quest_s14_w14_q02_p3", + "objectives": [ + { + "name": "quest_s14_w14_q02_p3_obj1", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q03_p1", + "templateId": "Quest:quest_s14_w14_q03_p1", + "objectives": [ + { + "name": "quest_s14_w14_q03_p1_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q03_p2", + "templateId": "Quest:quest_s14_w14_q03_p2", + "objectives": [ + { + "name": "quest_s14_w14_q03_p2_obj1", + "count": 1 + }, + { + "name": "quest_s14_w14_q03_p2_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q03_p3", + "templateId": "Quest:quest_s14_w14_q03_p3", + "objectives": [ + { + "name": "quest_s14_w14_q03_p3_obj1", + "count": 1 + }, + { + "name": "quest_s14_w14_q03_p3_obj2", + "count": 1 + }, + { + "name": "quest_s14_w14_q03_p3_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q04_p1", + "templateId": "Quest:quest_s14_w14_q04_p1", + "objectives": [ + { + "name": "quest_s14_w14_q04_p1_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q04_p2", + "templateId": "Quest:quest_s14_w14_q04_p2", + "objectives": [ + { + "name": "quest_s14_w14_q04_p2_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q04_p3", + "templateId": "Quest:quest_s14_w14_q04_p3", + "objectives": [ + { + "name": "quest_s14_w14_q04_p3_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q05_p1", + "templateId": "Quest:quest_s14_w14_q05_p1", + "objectives": [ + { + "name": "quest_s14_w14_q05_p1_o1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q05_p2", + "templateId": "Quest:quest_s14_w14_q05_p2", + "objectives": [ + { + "name": "quest_s14_w14_q05_p2_o1", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q05_p3", + "templateId": "Quest:quest_s14_w14_q05_p3", + "objectives": [ + { + "name": "quest_s14_w14_q05_p3_o1", + "count": 1 + }, + { + "name": "quest_s14_w14_q05_p3_o2", + "count": 1 + }, + { + "name": "quest_s14_w14_q05_p3_o3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q05_p4", + "templateId": "Quest:quest_s14_w14_q05_p4", + "objectives": [ + { + "name": "quest_s14_w14_q05_p4_o1", + "count": 3 + }, + { + "name": "quest_s14_w14_q05_p4_o2", + "count": 1 + }, + { + "name": "quest_s14_w14_q05_p4_o3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q05_p5", + "templateId": "Quest:quest_s14_w14_q05_p5", + "objectives": [ + { + "name": "quest_s14_w14_q05_p5_o1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:quest_s14_w14_q06", + "templateId": "Quest:quest_s14_w14_q06", + "objectives": [ + { + "name": "quest_s14_w14_q06_p1_o1", + "count": 1 + }, + { + "name": "quest_s14_w14_q06_p1_o2", + "count": 1 + }, + { + "name": "quest_s14_w14_q06_p1_o3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:MissionBundle_S14_Week_14" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Double", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentElimStreak_Double", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Monster", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentElimStreak_Monster", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Penta", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentElimStreak_Penta", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Quad", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentElimStreak_Quad", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentElimStreak_Triple", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentElimStreak_Triple", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentElimStreak" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Assault", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_Assault", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Explosives", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_Explosives", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Pistol", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_Pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Shotgun", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_Shotgun", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_SMG", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_SMG", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "templateId": "Quest:Quest_S13_PunchCard_Acc_DifferentExpert_Sniper", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Acc_DifferentExpert_Sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Acc_DifferentExpert" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Achievements_01", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Achievements", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Achievements_02", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Achievements", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Achievements_03", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Achievements", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Achievements_04", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Achievements", + "count": 30 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Achievements_05", + "templateId": "Quest:Quest_S13_PunchCard_Achievements_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Achievements", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Achievements" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_01", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_02", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_03", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_04", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_05", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_CatchFish_06", + "templateId": "Quest:Quest_S13_PunchCard_CatchFish_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_CatchFish", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_CatchFish" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Blue_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Blue", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Blue_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Blue", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Blue_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Blue", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Blue_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Blue", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Blue_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Blue_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Blue", + "count": 30 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Blue" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Gold_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Gold", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Gold_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Gold", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Gold_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Gold", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Gold_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Gold", + "count": 7 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Gold_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Gold_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Gold", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Gold" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Green_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Green", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Green_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Green", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Green_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Green", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Green_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Green", + "count": 30 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Green_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Green_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Green", + "count": 40 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Green" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Purple_01", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Purple", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Purple_02", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Purple", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Purple_03", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Purple", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Purple_04", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Purple", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Coins_Purple_05", + "templateId": "Quest:Quest_S13_PunchCard_Coins_Purple_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Coins_Purple", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Coins_Purple" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_01", + "templateId": "Quest:Quest_S13_PunchCard_Damage_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_02", + "templateId": "Quest:Quest_S13_PunchCard_Damage_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_03", + "templateId": "Quest:Quest_S13_PunchCard_Damage_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 100000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_04", + "templateId": "Quest:Quest_S13_PunchCard_Damage_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 250000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_05", + "templateId": "Quest:Quest_S13_PunchCard_Damage_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 500000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Damage_06", + "templateId": "Quest:Quest_S13_PunchCard_Damage_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage", + "count": 1000000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerDate_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerDate_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPower", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerDate_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerDate_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPower", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerDate_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerDate_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPower", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerDate_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerDate_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPower", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerHoneyDew_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerHoneyDew", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerHoneyDew_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerHoneyDew", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerHoneyDew_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerHoneyDew", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerHoneyDew_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerHoneyDew_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerHoneyDew", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerHoneyDew" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerPlum_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerPlum", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerPlum_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerPlum", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerPlum_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerPlum", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerPlum_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerPlum_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerPlum", + "count": 10000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerPlum" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTapas_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTapas", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTapas_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTapas", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTapas_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTapas", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTapas_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTapas_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTapas", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTapas" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTomato_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTomato", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTomato_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTomato", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTomato_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTomato", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerTomato_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerTomato_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerTomato", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_01", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerWasabi_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerWasabi", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_02", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerWasabi_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerWasabi", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_03", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerWasabi_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerWasabi", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Damage_HightowerWasabi_04", + "templateId": "Quest:Quest_PunchCard_Damage_HightowerWasabi_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Damage_HightowerPowerWasabi", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Damage_HightowerWasabi" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_01", + "templateId": "Quest:Quest_PunchCard_DestroyHightowerSuperDingo_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyHightowerSuperDingo", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_02", + "templateId": "Quest:Quest_PunchCard_DestroyHightowerSuperDingo_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyHightowerSuperDingo", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_03", + "templateId": "Quest:Quest_PunchCard_DestroyHightowerSuperDingo_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyHightowerSuperDingo", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_DestroyHightowerSuperDingo_04", + "templateId": "Quest:Quest_PunchCard_DestroyHightowerSuperDingo_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyHightowerSuperDingo", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyHightowerSuperDingo" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DestroyTrees_01", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyTrees", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DestroyTrees_02", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyTrees", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DestroyTrees_03", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyTrees", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DestroyTrees_04", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyTrees", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DestroyTrees_05", + "templateId": "Quest:Quest_S13_PunchCard_DestroyTrees_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DestroyTrees", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DestroyTrees" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DriveTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DriveTeammates", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DriveTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DriveTeammates", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DriveTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DriveTeammates", + "count": 50000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DriveTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DriveTeammates", + "count": 100000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_DriveTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_DriveTeammates_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_DriveTeammates", + "count": 250000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_DriveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Assault_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Assault_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Assault", + "count": 750 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Assault" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Assault", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_Assault", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Explosives", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_Explosives", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Pistol", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_Pistol", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Shotgun", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_Shotgun", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_SMG", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_SMG", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "templateId": "Quest:Quest_S13_PunchCard_Elim_DifferentWeapons_Sniper", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_DifferentWeapons_Sniper", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_DifferentWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Explosive_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Explosive_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Explosive", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Explosive" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Far_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Far", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Far_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Far", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Far_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Far", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Far_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Far_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Far", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Far" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_FireTrap_01", + "templateId": "Quest:Quest_PunchCard_Elim_FireTrap_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_FireTrap", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_FireTrap" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketDate_01", + "templateId": "Quest:Quest_PunchCard_Elim_GasketDate_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketDate", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketDate_02", + "templateId": "Quest:Quest_PunchCard_Elim_GasketDate_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketDate", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketDate_03", + "templateId": "Quest:Quest_PunchCard_Elim_GasketDate_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketDate", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketDate_04", + "templateId": "Quest:Quest_PunchCard_Elim_GasketDate_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketDate", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketDate_05", + "templateId": "Quest:Quest_PunchCard_Elim_GasketDate_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketDate", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketDate" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketTomato_01", + "templateId": "Quest:Quest_PunchCard_Elim_GasketTomato_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketTomato", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketTomato_02", + "templateId": "Quest:Quest_PunchCard_Elim_GasketTomato_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketTomato", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketTomato_03", + "templateId": "Quest:Quest_PunchCard_Elim_GasketTomato_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketTomato", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketTomato_04", + "templateId": "Quest:Quest_PunchCard_Elim_GasketTomato_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketTomato", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_GasketTomato_05", + "templateId": "Quest:Quest_PunchCard_Elim_GasketTomato_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_GasketTomato", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_GasketTomato" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_Hardy_01", + "templateId": "Quest:Quest_PunchCard_Elim_Hardy_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Hardy", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_Hardy_02", + "templateId": "Quest:Quest_PunchCard_Elim_Hardy_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Hardy", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_Hardy_03", + "templateId": "Quest:Quest_PunchCard_Elim_Hardy_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Hardy", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_Hardy_04", + "templateId": "Quest:Quest_PunchCard_Elim_Hardy_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Hardy", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Hardy" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Pistol_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Pistol_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Pistol" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Shotgun_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Shotgun_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Shotgun", + "count": 750 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Shotgun" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_SMG_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_SMG_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_SMG", + "count": 750 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_SMG" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Elim_Sniper_06", + "templateId": "Quest:Quest_S13_PunchCard_Elim_Sniper_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_Sniper", + "count": 750 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_Sniper" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Elim_TomatoAssault_01", + "templateId": "Quest:Quest_PunchCard_Elim_TomatoAssault_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Elim_TomatoAssault", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Elim_TomatoAssault" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_FishCollection_01", + "templateId": "Quest:Quest_PunchCard_FishCollection_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_FishCollection", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_FishCollection" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_GoFishing_01", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_GoFishing", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_GoFishing_02", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_GoFishing", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_GoFishing_03", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_GoFishing", + "count": 75 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_GoFishing_04", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_GoFishing", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_GoFishing_05", + "templateId": "Quest:Quest_S13_PunchCard_GoFishing_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_GoFishing", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_GoFishing" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_01", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_02", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 10000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_03", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_04", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 100000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_05", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 250000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Harvest_06", + "templateId": "Quest:Quest_S13_PunchCard_Harvest_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Harvest", + "count": 500000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Harvest" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_01", + "templateId": "Quest:Quest_PunchCard_HightowerGrapeAbsorb_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerGrapeAbsorb", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_02", + "templateId": "Quest:Quest_PunchCard_HightowerGrapeAbsorb_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerGrapeAbsorb", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_03", + "templateId": "Quest:Quest_PunchCard_HightowerGrapeAbsorb_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerGrapeAbsorb", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerGrapeAbsorb_04", + "templateId": "Quest:Quest_PunchCard_HightowerGrapeAbsorb_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerGrapeAbsorb", + "count": 15000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerGrapeAbsorb" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerSoyDistance_01", + "templateId": "Quest:Quest_PunchCard_HightowerSoyDistance_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerSoyDistance", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerSoyDistance_02", + "templateId": "Quest:Quest_PunchCard_HightowerSoyDistance_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerSoyDistance", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerSoyDistance_03", + "templateId": "Quest:Quest_PunchCard_HightowerSoyDistance_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerSoyDistance", + "count": 10000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_HightowerSoyDistance_04", + "templateId": "Quest:Quest_PunchCard_HightowerSoyDistance_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_HightowerSoyDistance", + "count": 25000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_HightowerSoyDistance" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_01", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerSquash_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerSquash", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_02", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerSquash_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerSquash", + "count": 15 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_03", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerSquash_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerSquash", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerSquash_04", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerSquash_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerSquash", + "count": 150 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerSquash" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_01", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerVertigo_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerVertigo", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_02", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerVertigo_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerVertigo", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_03", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerVertigo_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerVertigo", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Hit_HightowerVertigo_04", + "templateId": "Quest:Quest_PunchCard_Hit_HightowerVertigo_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Hit_HightowerPowerVertigo", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Hit_HightowerVertigo" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MaxResources_01", + "templateId": "Quest:Quest_S13_PunchCard_MaxResources_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MaxResources", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MaxResources" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_01", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_02", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_03", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_04", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_05", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_MiniChallenges_06", + "templateId": "Quest:Quest_S13_PunchCard_MiniChallenges_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_MiniChallenges", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_MiniChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_01", + "templateId": "Quest:Quest_S13_PunchCard_Placement_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_02", + "templateId": "Quest:Quest_S13_PunchCard_Placement_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_03", + "templateId": "Quest:Quest_S13_PunchCard_Placement_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_04", + "templateId": "Quest:Quest_S13_PunchCard_Placement_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_05", + "templateId": "Quest:Quest_S13_PunchCard_Placement_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Placement_06", + "templateId": "Quest:Quest_S13_PunchCard_Placement_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Placement", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Placement" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardCompletions", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardCompletions", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardCompletions", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardCompletions", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardCompletions_05", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardCompletions_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardCompletions", + "count": 40 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardCompletions" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardPunches", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardPunches", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardPunches", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_PunchCardPunches_04", + "templateId": "Quest:Quest_S13_PunchCard_PunchCardPunches_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_PunchCardPunches", + "count": 200 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_PunchCardPunches" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_RebootTeammates_06", + "templateId": "Quest:Quest_S13_PunchCard_RebootTeammates_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_RebootTeammates", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_RebootTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ReviveTeammates_06", + "templateId": "Quest:Quest_S13_PunchCard_ReviveTeammates_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ReviveTeammates", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ReviveTeammates" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_Rideshare_01", + "templateId": "Quest:Quest_PunchCard_Rideshare_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Rideshare", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Rideshare" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_AmmoBoxes_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_AmmoBoxes", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_AmmoBoxes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 2500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Chests_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_Chests_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Chests", + "count": 5000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Chests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_Llamas_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_Llamas_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_Llamas", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_Llamas" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_RareChests_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_RareChests_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_RareChests", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_RareChests" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Search_SupplyDrops_06", + "templateId": "Quest:Quest_S13_PunchCard_Search_SupplyDrops_06", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Search_SupplyDrops", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Search_SupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_SeasonLevel_01", + "templateId": "Quest:Quest_S13_PunchCard_SeasonLevel_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_SeasonLevel", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SeasonLevel" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Shakedowns_01", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Shakedowns", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Shakedowns_02", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Shakedowns", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Shakedowns_03", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Shakedowns", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_Shakedowns_04", + "templateId": "Quest:Quest_S13_PunchCard_Shakedowns_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_Shakedowns", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_Shakedowns" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01", + "templateId": "Quest:Quest_S13_PunchCard_ShootDownSupplyDrop_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ShootDownSupplyDrop", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ShootDownSupplyDrop" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_SidegradeWeapons_01", + "templateId": "Quest:Quest_S13_PunchCard_SidegradeWeapons_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_SidegradeWeapons", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_SidegradeWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ThankDriver_01", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ThankDriver", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ThankDriver_02", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ThankDriver", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ThankDriver_03", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ThankDriver", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_ThankDriver_04", + "templateId": "Quest:Quest_S13_PunchCard_ThankDriver_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_ThankDriver", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_ThankDriver" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons", + "count": 50 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_04", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons", + "count": 250 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons_DifferentRarities_Epic", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons_DifferentRarities_Legendary", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons_DifferentRarities_Rare", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "templateId": "Quest:Quest_S13_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UpgradeWeapons_DifferentRarities_Uncommon", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UpgradeWeapons_DifferentRarities" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UseForaged_01", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UseForaged", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UseForaged_02", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UseForaged", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UseForaged_03", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UseForaged", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UseForaged_04", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UseForaged", + "count": 500 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_UseForaged_05", + "templateId": "Quest:Quest_S13_PunchCard_UseForaged_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_UseForaged", + "count": 1000 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_UseForaged" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_WarmWestLaunch_01", + "templateId": "Quest:Quest_PunchCard_WarmWestLaunch_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WarmWestLaunch", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WarmWestLaunch" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WeeklyChallenges", + "count": 5 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_02", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WeeklyChallenges", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_03", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WeeklyChallenges", + "count": 20 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_04", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WeeklyChallenges", + "count": 40 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WeeklyChallenges_05", + "templateId": "Quest:Quest_S13_PunchCard_WeeklyChallenges_05", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WeeklyChallenges", + "count": 60 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WeeklyChallenges" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Duo", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinDifferentModes_Duo", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_LTM", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_LTM", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinDifferentModes_LTM", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Rumble", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinDifferentModes_Rumble", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Solo", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinDifferentModes_Solo", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S14-Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "templateId": "Quest:Quest_S13_PunchCard_WinDifferentModes_Squad", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinDifferentModes_Squad", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinDifferentModes" + }, + { + "itemGuid": "S14-Quest:Quest_PunchCard_WinWithFriend_01", + "templateId": "Quest:Quest_PunchCard_WinWithFriend_01", + "objectives": [ + { + "name": "Quest_S14_PunchCard_WinWithFriend", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_PunchCard_WinWithFriend" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_xpcoins_blue", + "templateId": "Quest:quest_s14_w1_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w1_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_xpcoins_green", + "templateId": "Quest:quest_s14_w1_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w1_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1" + }, + { + "itemGuid": "S14-Quest:quest_s14_w1_xpcoins_purple", + "templateId": "Quest:quest_s14_w1_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w1_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w1_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_1" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_xpcoins_blue", + "templateId": "Quest:quest_s14_w10_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w10_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_xpcoins_gold", + "templateId": "Quest:quest_s14_w10_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w10_xpcoins_gold_obj0", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_gold_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_xpcoins_green", + "templateId": "Quest:quest_s14_w10_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w10_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w10_xpcoins_purple", + "templateId": "Quest:quest_s14_w10_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w10_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w10_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_xpcoins_blue", + "templateId": "Quest:quest_s14_w2_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w2_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_xpcoins_green", + "templateId": "Quest:quest_s14_w2_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w2_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2" + }, + { + "itemGuid": "S14-Quest:quest_s14_w2_xpcoins_purple", + "templateId": "Quest:quest_s14_w2_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w2_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w2_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_2" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_xpcoins_blue", + "templateId": "Quest:quest_s14_w3_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w3_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_xpcoins_gold", + "templateId": "Quest:quest_s14_w3_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w3_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_xpcoins_green", + "templateId": "Quest:quest_s14_w3_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w3_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S14-Quest:quest_s14_w3_xpcoins_purple", + "templateId": "Quest:quest_s14_w3_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w3_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w3_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_3" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_xpcoins_blue", + "templateId": "Quest:quest_s14_w4_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w4_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_xpcoins_gold", + "templateId": "Quest:quest_s14_w4_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w4_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_xpcoins_green", + "templateId": "Quest:quest_s14_w4_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w4_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S14-Quest:quest_s14_w4_xpcoins_purple", + "templateId": "Quest:quest_s14_w4_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w4_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w4_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_4" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_xpcoins_blue", + "templateId": "Quest:quest_s14_w5_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w5_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_xpcoins_gold", + "templateId": "Quest:quest_s14_w5_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w5_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_xpcoins_green", + "templateId": "Quest:quest_s14_w5_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w5_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S14-Quest:quest_s14_w5_xpcoins_purple", + "templateId": "Quest:quest_s14_w5_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w5_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w5_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_5" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_xpcoins_blue", + "templateId": "Quest:quest_s14_w6_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w6_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_xpcoins_gold", + "templateId": "Quest:quest_s14_w6_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w6_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_xpcoins_green", + "templateId": "Quest:quest_s14_w6_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w6_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S14-Quest:quest_s14_w6_xpcoins_purple", + "templateId": "Quest:quest_s14_w6_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w6_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w6_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_6" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_xpcoins_blue", + "templateId": "Quest:quest_s14_w7_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w7_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_xpcoins_gold", + "templateId": "Quest:quest_s14_w7_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w7_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_xpcoins_green", + "templateId": "Quest:quest_s14_w7_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w7_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S14-Quest:quest_s14_w7_xpcoins_purple", + "templateId": "Quest:quest_s14_w7_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w7_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w7_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_7" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_xpcoins_blue", + "templateId": "Quest:quest_s14_w8_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w8_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_xpcoins_gold", + "templateId": "Quest:quest_s14_w8_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w8_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_xpcoins_green", + "templateId": "Quest:quest_s14_w8_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w8_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S14-Quest:quest_s14_w8_xpcoins_purple", + "templateId": "Quest:quest_s14_w8_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w8_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w8_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_8" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_xpcoins_blue", + "templateId": "Quest:quest_s14_w9_xpcoins_blue", + "objectives": [ + { + "name": "quest_s14_w9_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_xpcoins_gold", + "templateId": "Quest:quest_s14_w9_xpcoins_gold", + "objectives": [ + { + "name": "quest_s14_w9_xpcoins_gold_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_gold_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_xpcoins_green", + "templateId": "Quest:quest_s14_w9_xpcoins_green", + "objectives": [ + { + "name": "quest_s14_w9_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9" + }, + { + "itemGuid": "S14-Quest:quest_s14_w9_xpcoins_purple", + "templateId": "Quest:quest_s14_w9_xpcoins_purple", + "objectives": [ + { + "name": "quest_s14_w9_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s14_w9_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_CoinCollectXP_Week_9" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q01", + "templateId": "Quest:quest_s14_fortnightmares_q01", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q02", + "templateId": "Quest:quest_s14_fortnightmares_q02", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q03", + "templateId": "Quest:quest_s14_fortnightmares_q03", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q04", + "templateId": "Quest:quest_s14_fortnightmares_q04", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q05", + "templateId": "Quest:quest_s14_fortnightmares_q05", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q06", + "templateId": "Quest:quest_s14_fortnightmares_q06", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q07", + "templateId": "Quest:quest_s14_fortnightmares_q07", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q08", + "templateId": "Quest:quest_s14_fortnightmares_q08", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q08_obj0", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj1", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj2", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj3", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj4", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj5", + "count": 1 + }, + { + "name": "quest_s14_fortnightmares_q08_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_fortnightmares_q09", + "templateId": "Quest:quest_s14_fortnightmares_q09", + "objectives": [ + { + "name": "quest_s14_fortnightmares_q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_Event_S14_Fortnightmares_01" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_date", + "templateId": "Quest:quest_superlevel_g_date", + "objectives": [ + { + "name": "quest_superlevel_g_date", + "count": 165 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Date" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_grape", + "templateId": "Quest:quest_superlevel_g_grape", + "objectives": [ + { + "name": "quest_superlevel_g_grape", + "count": 155 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Grape" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_honeydew", + "templateId": "Quest:quest_superlevel_g_honeydew", + "objectives": [ + { + "name": "quest_superlevel_g_honeydew", + "count": 150 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_HoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_mango", + "templateId": "Quest:quest_superlevel_g_mango", + "objectives": [ + { + "name": "quest_superlevel_g_mango", + "count": 170 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Mango" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_squash", + "templateId": "Quest:quest_superlevel_g_squash", + "objectives": [ + { + "name": "quest_superlevel_g_squash", + "count": 160 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Squash" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_tapas", + "templateId": "Quest:quest_superlevel_g_tapas", + "objectives": [ + { + "name": "quest_superlevel_g_tapas", + "count": 145 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tapas" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_tomato", + "templateId": "Quest:quest_superlevel_g_tomato", + "objectives": [ + { + "name": "quest_superlevel_g_tomato", + "count": 175 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Tomato" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_g_wasabi", + "templateId": "Quest:quest_superlevel_g_wasabi", + "objectives": [ + { + "name": "quest_superlevel_g_wasabi", + "count": 180 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_G_Wasabi" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_date", + "templateId": "Quest:quest_superlevel_h_date", + "objectives": [ + { + "name": "quest_superlevel_h_date", + "count": 205 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Date" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_grape", + "templateId": "Quest:quest_superlevel_h_grape", + "objectives": [ + { + "name": "quest_superlevel_h_grape", + "count": 195 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Grape" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_honeydew", + "templateId": "Quest:quest_superlevel_h_honeydew", + "objectives": [ + { + "name": "quest_superlevel_h_honeydew", + "count": 190 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_HoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_mango", + "templateId": "Quest:quest_superlevel_h_mango", + "objectives": [ + { + "name": "quest_superlevel_h_mango", + "count": 210 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Mango" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_squash", + "templateId": "Quest:quest_superlevel_h_squash", + "objectives": [ + { + "name": "quest_superlevel_h_squash", + "count": 200 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Squash" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_tapas", + "templateId": "Quest:quest_superlevel_h_tapas", + "objectives": [ + { + "name": "quest_superlevel_h_tapas", + "count": 185 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tapas" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_tomato", + "templateId": "Quest:quest_superlevel_h_tomato", + "objectives": [ + { + "name": "quest_superlevel_h_tomato", + "count": 215 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Tomato" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_h_wasabi", + "templateId": "Quest:quest_superlevel_h_wasabi", + "objectives": [ + { + "name": "quest_superlevel_h_wasabi", + "count": 220 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_H_Wasabi" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_date", + "templateId": "Quest:quest_superlevel_s_date", + "objectives": [ + { + "name": "quest_superlevel_s_date", + "count": 125 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Date" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_grape", + "templateId": "Quest:quest_superlevel_s_grape", + "objectives": [ + { + "name": "quest_superlevel_s_grape", + "count": 115 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Grape" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_honeydew", + "templateId": "Quest:quest_superlevel_s_honeydew", + "objectives": [ + { + "name": "quest_superlevel_s_honeydew", + "count": 110 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_HoneyDew" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_mango", + "templateId": "Quest:quest_superlevel_s_mango", + "objectives": [ + { + "name": "quest_superlevel_s_mango", + "count": 130 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Mango" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_squash", + "templateId": "Quest:quest_superlevel_s_squash", + "objectives": [ + { + "name": "quest_superlevel_s_squash", + "count": 120 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Squash" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_tapas", + "templateId": "Quest:quest_superlevel_s_tapas", + "objectives": [ + { + "name": "quest_superlevel_s_tapas", + "count": 105 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tapas" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_tomato", + "templateId": "Quest:quest_superlevel_s_tomato", + "objectives": [ + { + "name": "quest_superlevel_s_tomato", + "count": 135 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Tomato" + }, + { + "itemGuid": "S14-Quest:quest_superlevel_s_wasabi", + "templateId": "Quest:quest_superlevel_s_wasabi", + "objectives": [ + { + "name": "quest_superlevel_s_wasabi", + "count": 140 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_SuperLevel_S_Wasabi" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q01", + "templateId": "Quest:quest_s14_wasabi_q01", + "objectives": [ + { + "name": "quest_s14_wasabi_q01_obj0", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj1", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj2", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj3", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj4", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj5", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj6", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj7", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj8", + "count": 1 + }, + { + "name": "quest_s14_wasabi_q01_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_01" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q02", + "templateId": "Quest:quest_s14_wasabi_q02", + "objectives": [ + { + "name": "quest_s14_wasabi_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_02" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q03", + "templateId": "Quest:quest_s14_wasabi_q03", + "objectives": [ + { + "name": "quest_s14_wasabi_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_03" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q04", + "templateId": "Quest:quest_s14_wasabi_q04", + "objectives": [ + { + "name": "quest_s14_wasabi_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_04" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q05", + "templateId": "Quest:quest_s14_wasabi_q05", + "objectives": [ + { + "name": "quest_s14_wasabi_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_05" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q06", + "templateId": "Quest:quest_s14_wasabi_q06", + "objectives": [ + { + "name": "quest_s14_wasabi_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_06" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q07", + "templateId": "Quest:quest_s14_wasabi_q07", + "objectives": [ + { + "name": "quest_s14_wasabi_q07_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_07" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q08", + "templateId": "Quest:quest_s14_wasabi_q08", + "objectives": [ + { + "name": "quest_s14_wasabi_q08_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Wasabi_08" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q09a", + "templateId": "Quest:quest_s14_wasabi_q09a", + "objectives": [ + { + "name": "quest_s14_wasabi_q09a_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerWasabi" + }, + { + "itemGuid": "S14-Quest:quest_s14_wasabi_q09b", + "templateId": "Quest:quest_s14_wasabi_q09b", + "objectives": [ + { + "name": "quest_s14_wasabi_q09b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S14-ChallengeBundle:QuestBundle_S14_Awakenings_HightowerWasabi" + } ] }, - { - "templateId": "Quest:Daily_HuskExtermination_Ninja", - "objectives": [ - "kill_husk_ninja_v2" - ] - }, - { - "templateId": "Quest:Daily_HuskExtermination_Outlander", - "objectives": [ - "kill_husk_outlander_v2" - ] - }, - { - "templateId": "Quest:Daily_HuskExtermination_Soldier", - "objectives": [ - "kill_husk_commando_v2" - ] - }, - { - "templateId": "Quest:Daily_Mission_Specialist_Constructor", - "objectives": [ - "complete_constructor" - ] - }, - { - "templateId": "Quest:Daily_Mission_Specialist_Ninja", - "objectives": [ - "complete_ninja" - ] - }, - { - "templateId": "Quest:Daily_Mission_Specialist_Outlander", - "objectives": [ - "complete_outlander" - ] - }, - { - "templateId": "Quest:Daily_Mission_Specialist_Soldier", - "objectives": [ - "complete_commando" - ] - }, - { - "templateId": "Quest:Daily_PartyOf50", - "objectives": [ - "questcollect_survivoritemdata_v2" + "Season15": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_00", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_00", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_00" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_06", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_06" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_07", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_07" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_08", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_08" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_09", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_09" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_10", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_10" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_11", + "templateId": "ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_11", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_11" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_06", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_06" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_07", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_07" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_08", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_08" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_09_Cumulative", + "templateId": "ChallengeBundleSchedule:Season15_Cosmos_Schedule_09_Cumulative", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Cosmos_09_Cumulative" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season15_Feat_BundleSchedule", + "granted_bundles": [ + "S15-ChallengeBundle:Season15_Feat_Bundle" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule", + "templateId": "ChallengeBundleSchedule:Season15_Milestone_Schedule", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones", + "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent", + "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure", + "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple", + "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana", + "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire", + "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem", + "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates", + "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season15_Mission_Schedule", + "granted_bundles": [ + "S15-ChallengeBundle:MissionBundle_S15_Week_01", + "S15-ChallengeBundle:MissionBundle_S15_Week_02", + "S15-ChallengeBundle:MissionBundle_S15_Week_03", + "S15-ChallengeBundle:MissionBundle_S15_Week_04", + "S15-ChallengeBundle:MissionBundle_S15_Week_05", + "S15-ChallengeBundle:MissionBundle_S15_Week_06", + "S15-ChallengeBundle:MissionBundle_S15_Week_07", + "S15-ChallengeBundle:MissionBundle_S15_Week_08", + "S15-ChallengeBundle:MissionBundle_S15_Week_09", + "S15-ChallengeBundle:MissionBundle_S15_Week_10", + "S15-ChallengeBundle:MissionBundle_S15_Week_11", + "S15-ChallengeBundle:MissionBundle_S15_Week_12", + "S15-ChallengeBundle:MissionBundle_S15_Week_13", + "S15-ChallengeBundle:MissionBundle_S15_Week_14", + "S15-ChallengeBundle:MissionBundle_S15_Week_15" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_06", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_06" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_07", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_07" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_08", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_08" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season15_Mystery_Schedule_09", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Mystery_09" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_06", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_06" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_07", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_07" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_08", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_08" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season15_Nightmare_Schedule_09", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Nightmare_09" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15", + "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_HiddenRole", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Event_HiddenRole", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_OperationSnowdown", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Event_OperationSnowdown", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_PlumRetro", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Event_PlumRetro", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_01", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_02", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_03", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_04", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_05", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_06", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_06", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_07", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_07", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_08", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_08", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_09", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_09", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_10", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_10", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_11", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_11", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_12", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_12", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_13", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_13", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_14", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_14", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_15", + "templateId": "ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_15", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_05" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_01", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_01" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_02", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_02" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_03", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_03" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_04", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_04" + ] + }, + { + "itemGuid": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_05", + "granted_bundles": [ + "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_05" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_00", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_00", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_00_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_01_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_00" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_01", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_01_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_01_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_02", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_02_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_03", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_03_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_03_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_04", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_04_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_05", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_05_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_05_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_06", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_06", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_06_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_06" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_07", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_07", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_07_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_07_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_07" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_08", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_08", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_08_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_08" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_09", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_09", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_09_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_09_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_09" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_10", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_10", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_10_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_10" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_11", + "templateId": "ChallengeBundle:QuestBundle_S15_AlternateStyles_11", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_AlternateStyles_11_q01", + "S15-Quest:Quest_S15_Style_AlternateStyles_11_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_AlternateStyles_Schedule_11" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_01", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q01b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_02", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q02b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_03", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q03b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_04", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q04b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_05", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q05b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_06", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_06", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q06b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_06" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_07", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_07", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q07b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_07" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_08", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_08", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q08b" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_08" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_09_Cumulative", + "templateId": "ChallengeBundle:QuestBundle_S15_Cosmos_09_Cumulative", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Cosmos_Q09_Cumulative" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Cosmos_Schedule_09_Cumulative" + }, + { + "itemGuid": "S15-ChallengeBundle:Season15_Feat_Bundle", + "templateId": "ChallengeBundle:Season15_Feat_Bundle", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_feat_accolade_expert_ar", + "S15-Quest:quest_s15_feat_accolade_expert_explosives", + "S15-Quest:quest_s15_feat_accolade_expert_pickaxe", + "S15-Quest:quest_s15_feat_accolade_expert_pistol", + "S15-Quest:quest_s15_feat_accolade_expert_shotgun", + "S15-Quest:quest_s15_feat_accolade_expert_smg", + "S15-Quest:quest_s15_feat_accolade_expert_sniper", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_2", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_3", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_4", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_5", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_6", + "S15-Quest:quest_s15_feat_accolade_weaponspecialist__samematch_7", + "S15-Quest:quest_s15_feat_athenarank_duo_100x", + "S15-Quest:quest_s15_feat_athenarank_duo_10x", + "S15-Quest:quest_s15_feat_athenarank_duo_1x", + "S15-Quest:quest_s15_feat_athenarank_rumble_100x", + "S15-Quest:quest_s15_feat_athenarank_rumble_1x", + "S15-Quest:quest_s15_feat_athenarank_solo_100x", + "S15-Quest:quest_s15_feat_athenarank_solo_10elims", + "S15-Quest:quest_s15_feat_athenarank_solo_10x", + "S15-Quest:quest_s15_feat_athenarank_solo_1x", + "S15-Quest:quest_s15_feat_athenarank_squad_100x", + "S15-Quest:quest_s15_feat_athenarank_squad_10x", + "S15-Quest:quest_s15_feat_athenarank_squad_1x", + "S15-Quest:quest_s15_feat_caught_goldfish", + "S15-Quest:quest_s15_feat_death_goldfish", + "S15-Quest:quest_s15_feat_kill_afterharpoonpull", + "S15-Quest:quest_s15_feat_kill_aftersupplydrop", + "S15-Quest:quest_s15_feat_kill_gliding", + "S15-Quest:quest_s15_feat_kill_goldfish", + "S15-Quest:quest_s15_feat_kill_pickaxe", + "S15-Quest:quest_s15_feat_kill_rocketride", + "S15-Quest:quest_s15_feat_kill_rustycan", + "S15-Quest:quest_s15_feat_kill_yeet", + "S15-Quest:quest_s15_feat_land_firsttime", + "S15-Quest:quest_s15_feat_purplecoin_combo", + "S15-Quest:quest_s15_feat_reach_seasonlevel", + "S15-Quest:quest_s15_feat_throw_consumable", + "S15-Quest:quest_s15_feat_kill_everyweapon_lexa", + "S15-Quest:quest_s15_feat_athenarank_solo_duos_squads_lexa", + "S15-Quest:quest_s15_feat_kill_pickaxe_ancientgladiator", + "S15-Quest:quest_s15_feat_kill_disguisedopponent_shapeshifter", + "S15-Quest:quest_s15_feat_kill_opponent_squads_spacefighter", + "S15-Quest:quest_s15_feat_kill_opponent_explosives_spacefighter", + "S15-Quest:quest_s15_feat_damage_opponents_fall_flapjackwrangler", + "S15-Quest:quest_s15_feat_kill_opponent_pistol_flapjackwrangler", + "S15-Quest:quest_s15_feat_land_durrrburger", + "S15-Quest:quest_s15_feat_collect_cosmosjelly", + "S15-Quest:quest_s15_feat_kill_bounty_cosmos", + "S15-Quest:quest_s15_feat_collect_materials_razorcrest", + "S15-Quest:quest_s15_feat_kill_bounty_cosmos_sniper", + "S15-Quest:quest_s15_feat_kill_coliseum_ancientgladiator", + "S15-Quest:quest_s15_feat_kill_jungle_dinoguard", + "S15-Quest:quest_s15_feat_emote_thumbsdown_empbox_coliseum", + "S15-Quest:quest_s15_feat_kill_everyweapon_hunterhaven", + "S15-Quest:quest_s15_feat_land_historian", + "S15-Quest:quest_s15_feat_land_jupiter", + "S15-Quest:quest_s15_feat_kill_opponent_futuresamurai_downcount", + "S15-Quest:quest_s15_feat_kill_singlematch_coliseum", + "S15-Quest:quest_s15_feat_athenarank_trios_1x", + "S15-Quest:quest_s15_feat_athenarank_trios_10x", + "S15-Quest:quest_s15_feat_athenarank_trios_100x", + "S15-Quest:quest_s15_feat_athenacollection_fish", + "S15-Quest:quest_s15_feat_athenacollection_npc", + "S15-Quest:quest_s15_feat_athenarank_vendetta", + "S15-Quest:quest_s15_feat_reviveplayer_vendetta", + "S15-Quest:quest_s15_feat_kill_opponent_explosives_vendetta", + "S15-Quest:quest_s15_feat_damage_opponents_vehicle_vendetta", + "S15-Quest:quest_s15_feat_destroy_opponent_structures_vendetta", + "S15-Quest:quest_s15_feat_kill_everyweapon_vendetta" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Feat_BundleSchedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent", + "templateId": "ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_blaze_r_q1_ignite_opponent", + "S15-Quest:quest_s15_milestone_blaze_r_q2_ignite_opponent", + "S15-Quest:quest_s15_milestone_blaze_r_q3_ignite_opponent", + "S15-Quest:quest_s15_milestone_blaze_r_q4_ignite_opponent", + "S15-Quest:quest_s15_milestone_blaze_r_q5_ignite_opponent" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure", + "templateId": "ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_blaze_r_q1_ignite_structure", + "S15-Quest:quest_s15_milestone_blaze_r_q2_ignite_structure", + "S15-Quest:quest_s15_milestone_blaze_r_q3_ignite_structure", + "S15-Quest:quest_s15_milestone_blaze_r_q4_ignite_structure", + "S15-Quest:quest_s15_milestone_blaze_r_q5_ignite_structure" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple", + "templateId": "ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_apple", + "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_apple", + "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_apple", + "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_apple", + "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_apple" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana", + "templateId": "ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_banana", + "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_banana", + "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_banana", + "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_banana", + "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_banana" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire", + "templateId": "ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_campfire", + "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_campfire", + "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_campfire", + "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_campfire", + "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_campfire" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem", + "templateId": "ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_forageditem", + "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_forageditem", + "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_forageditem", + "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_forageditem", + "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_forageditem" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom", + "templateId": "ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_mushroom", + "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_mushroom", + "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_mushroom", + "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_mushroom", + "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_mushroom" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_CatchFish", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_CatchFish_Q01", + "S15-Quest:Quest_S15_Milestone_CatchFish_Q02", + "S15-Quest:Quest_S15_Milestone_CatchFish_Q03", + "S15-Quest:Quest_S15_Milestone_CatchFish_Q04", + "S15-Quest:Quest_S15_Milestone_CatchFish_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_CollectGold_Q01", + "S15-Quest:Quest_S15_Milestone_CollectGold_Q02", + "S15-Quest:Quest_S15_Milestone_CollectGold_Q03", + "S15-Quest:Quest_S15_Milestone_CollectGold_Q04", + "S15-Quest:Quest_S15_Milestone_CollectGold_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q01", + "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q02", + "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q03", + "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q04", + "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q01", + "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q02", + "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q03", + "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q04", + "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q01", + "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q02", + "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q03", + "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q04", + "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q01", + "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q02", + "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q03", + "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q04", + "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q01", + "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q02", + "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q03", + "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q04", + "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q01", + "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q02", + "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q03", + "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q04", + "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q01", + "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q02", + "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q03", + "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q04", + "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q01", + "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q02", + "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q03", + "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q04", + "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q01", + "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q02", + "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q03", + "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q04", + "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_DestroyStones_Q01", + "S15-Quest:Quest_S15_Milestone_DestroyStones_Q02", + "S15-Quest:Quest_S15_Milestone_DestroyStones_Q03", + "S15-Quest:Quest_S15_Milestone_DestroyStones_Q04", + "S15-Quest:Quest_S15_Milestone_DestroyStones_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q01", + "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q02", + "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q03", + "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q04", + "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q01", + "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q02", + "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q03", + "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q04", + "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_150m_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_150m_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_150m_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_150m_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_150m_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Player_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Player_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Player_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Player_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Player_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q01", + "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q02", + "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q03", + "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q04", + "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_GlideDistance_Q01", + "S15-Quest:Quest_S15_Milestone_GlideDistance_Q02", + "S15-Quest:Quest_S15_Milestone_GlideDistance_Q03", + "S15-Quest:Quest_S15_Milestone_GlideDistance_Q04", + "S15-Quest:Quest_S15_Milestone_GlideDistance_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q01", + "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q02", + "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q03", + "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q04", + "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q01", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q02", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q03", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q04", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q01", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q02", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q03", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q04", + "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_MeleeKills_Q01", + "S15-Quest:Quest_S15_Milestone_MeleeKills_Q02", + "S15-Quest:Quest_S15_Milestone_MeleeKills_Q03", + "S15-Quest:Quest_S15_Milestone_MeleeKills_Q04", + "S15-Quest:Quest_S15_Milestone_MeleeKills_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Top10_Q01", + "S15-Quest:Quest_S15_Milestone_Top10_Q02", + "S15-Quest:Quest_S15_Milestone_Top10_Q03", + "S15-Quest:Quest_S15_Milestone_Top10_Q04", + "S15-Quest:Quest_S15_Milestone_Top10_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q01", + "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q02", + "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q03", + "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q04", + "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q01", + "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q02", + "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q03", + "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q04", + "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q01", + "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q02", + "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q03", + "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q04", + "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Search_Chests_Q01", + "S15-Quest:Quest_S15_Milestone_Search_Chests_Q02", + "S15-Quest:Quest_S15_Milestone_Search_Chests_Q03", + "S15-Quest:Quest_S15_Milestone_Search_Chests_Q04", + "S15-Quest:Quest_S15_Milestone_Search_Chests_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q01", + "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q02", + "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q03", + "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q04", + "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q01", + "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q02", + "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q03", + "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q04", + "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_SwimDistance_Q01", + "S15-Quest:Quest_S15_Milestone_SwimDistance_Q02", + "S15-Quest:Quest_S15_Milestone_SwimDistance_Q03", + "S15-Quest:Quest_S15_Milestone_SwimDistance_Q04", + "S15-Quest:Quest_S15_Milestone_SwimDistance_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q01", + "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q02", + "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q03", + "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q04", + "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q01", + "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q02", + "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q03", + "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q04", + "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q01", + "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q02", + "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q03", + "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q04", + "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance", + "templateId": "ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q01", + "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q02", + "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q03", + "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q04", + "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Milestone_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W1_VR_Q01", + "S15-Quest:Quest_S15_W1_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W1_VR_Q02", + "S15-Quest:Quest_S15_W1_VR_Q03", + "S15-Quest:Quest_S15_W1_VR_Q05", + "S15-Quest:Quest_S15_W1_VR_Q06", + "S15-Quest:Quest_S15_W1_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W2_VR_Q01", + "S15-Quest:Quest_S15_W2_VR_Q05" + ], + "questStages": [ + "S15-Quest:Quest_S15_W2_VR_Q02", + "S15-Quest:Quest_S15_W2_VR_Q03", + "S15-Quest:Quest_S15_W2_VR_Q04", + "S15-Quest:Quest_S15_W2_VR_Q06", + "S15-Quest:Quest_S15_W2_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W3_VR_Q01", + "S15-Quest:Quest_S15_W3_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W3_VR_Q02", + "S15-Quest:Quest_S15_W3_VR_Q03", + "S15-Quest:Quest_S15_W3_VR_Q05", + "S15-Quest:Quest_S15_W3_VR_Q06", + "S15-Quest:Quest_S15_W3_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_04", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w04_ragnarok_vr_q1a_kill_within_5m", + "S15-Quest:quest_s15_w04_kyle_vr_q2a_destroy_opponent_structures_pickaxe", + "S15-Quest:quest_s15_w04_tomatohead_vr_q3a_interact_tomatobasket" + ], + "questStages": [ + "S15-Quest:quest_s15_w04_cole_vr_q2b_damage_opponents_pickaxe", + "S15-Quest:quest_s15_w04_gladiator_vr_q1b_kill_low_health", + "S15-Quest:quest_s15_w04_bigchuggus_vr_q1c_kill_full_health_shield", + "S15-Quest:quest_s15_w04_tomatohead_vr_q3b_ignite_dance_tomatoshrine" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_05", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w05_doggo_vr_q01", + "S15-Quest:quest_s15_w05_grimbles_vr_q02", + "S15-Quest:quest_s15_w05_outlaw_vr_q06" + ], + "questStages": [ + "S15-Quest:quest_s15_w05_grimbles_vr_q03", + "S15-Quest:quest_s15_w05_doggo_vr_q04", + "S15-Quest:quest_s15_w05_doggo_vr_q05", + "S15-Quest:quest_s15_w05_outlaw_vr_q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_06", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W6_VR_Q01", + "S15-Quest:Quest_S15_W6_VR_Q02" + ], + "questStages": [ + "S15-Quest:Quest_S15_W6_VR_Q03", + "S15-Quest:Quest_S15_W6_VR_Q04", + "S15-Quest:Quest_S15_W6_VR_Q05", + "S15-Quest:Quest_S15_W6_VR_Q06", + "S15-Quest:Quest_S15_W6_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_07", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W7_VR_Q01", + "S15-Quest:Quest_S15_W7_VR_Q03" + ], + "questStages": [ + "S15-Quest:Quest_S15_W7_VR_Q02", + "S15-Quest:Quest_S15_W7_VR_Q04", + "S15-Quest:Quest_S15_W7_VR_Q05", + "S15-Quest:Quest_S15_W7_VR_Q06", + "S15-Quest:Quest_S15_W7_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_08", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W8_VR_Q01", + "S15-Quest:Quest_S15_W8_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W8_VR_Q02", + "S15-Quest:Quest_S15_W8_VR_Q03", + "S15-Quest:Quest_S15_W8_VR_Q05", + "S15-Quest:Quest_S15_W8_VR_Q06", + "S15-Quest:Quest_S15_W8_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_09", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W9_VR_Q01", + "S15-Quest:Quest_S15_W9_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W9_VR_Q02", + "S15-Quest:Quest_S15_W9_VR_Q03", + "S15-Quest:Quest_S15_W9_VR_Q05", + "S15-Quest:Quest_S15_W9_VR_Q06", + "S15-Quest:Quest_S15_W9_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_10", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W10_VR_Q01", + "S15-Quest:Quest_S15_W10_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W10_VR_Q02", + "S15-Quest:Quest_S15_W10_VR_Q03", + "S15-Quest:Quest_S15_W10_VR_Q05", + "S15-Quest:Quest_S15_W10_VR_Q06", + "S15-Quest:Quest_S15_W10_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_11", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W11_VR_Q01", + "S15-Quest:Quest_S15_W11_VR_Q04", + "S15-Quest:Quest_S15_W11_VR_Q06" + ], + "questStages": [ + "S15-Quest:Quest_S15_W11_VR_Q02", + "S15-Quest:Quest_S15_W11_VR_Q03", + "S15-Quest:Quest_S15_W11_VR_Q05", + "S15-Quest:Quest_S15_W11_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_12", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W12_VR_Q01", + "S15-Quest:Quest_S15_W12_VR_Q06" + ], + "questStages": [ + "S15-Quest:Quest_S15_W12_VR_Q02", + "S15-Quest:Quest_S15_W12_VR_Q03", + "S15-Quest:Quest_S15_W12_VR_Q04", + "S15-Quest:Quest_S15_W12_VR_Q05", + "S15-Quest:Quest_S15_W12_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_13", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W13_VR_Q01", + "S15-Quest:Quest_S15_W13_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W13_VR_Q02", + "S15-Quest:Quest_S15_W13_VR_Q03", + "S15-Quest:Quest_S15_W13_VR_Q05", + "S15-Quest:Quest_S15_W13_VR_Q06", + "S15-Quest:Quest_S15_W13_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_14", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W14_VR_Q01", + "S15-Quest:Quest_S15_W14_VR_Q05" + ], + "questStages": [ + "S15-Quest:Quest_S15_W14_VR_Q02", + "S15-Quest:Quest_S15_W14_VR_Q03", + "S15-Quest:Quest_S15_W14_VR_Q04", + "S15-Quest:Quest_S15_W14_VR_Q06", + "S15-Quest:Quest_S15_W14_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:MissionBundle_S15_Week_15", + "templateId": "ChallengeBundle:MissionBundle_S15_Week_15", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W15_VR_Q01", + "S15-Quest:Quest_S15_W15_VR_Q03", + "S15-Quest:Quest_S15_W15_VR_Q04" + ], + "questStages": [ + "S15-Quest:Quest_S15_W15_VR_Q02", + "S15-Quest:Quest_S15_W15_VR_Q05", + "S15-Quest:Quest_S15_W15_VR_Q06", + "S15-Quest:Quest_S15_W15_VR_Q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mission_Schedule" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_01", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_01_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_02", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_02_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_03", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_03_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_04", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_04_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_05", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_05_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_06", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_06", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_06_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_06" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_07", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_07", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_07_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_07" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_08", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_08", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_08_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_08" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Mystery_09", + "templateId": "ChallengeBundle:QuestBundle_S15_Mystery_09", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_Mystery_09_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Mystery_Schedule_09" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_01", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_01", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_02", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_02", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q02" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_03", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_03", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q03" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_04", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_04", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q04" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_05", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_05", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q05" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_06", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_06", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q06" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_06" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_07", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_07", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q07" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_07" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_08", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_08", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q08" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_08" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_09", + "templateId": "ChallengeBundle:QuestBundle_S15_Nightmare_09", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_nightmare_q09" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Nightmare_Schedule_09" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w07_xpcoins_green", + "S15-Quest:quest_s15_w07_xpcoins_blue", + "S15-Quest:quest_s15_w07_xpcoins_purple", + "S15-Quest:quest_s15_w07_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w08_xpcoins_green", + "S15-Quest:quest_s15_w08_xpcoins_blue", + "S15-Quest:quest_s15_w08_xpcoins_purple", + "S15-Quest:quest_s15_w08_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w09_xpcoins_green", + "S15-Quest:quest_s15_w09_xpcoins_blue", + "S15-Quest:quest_s15_w09_xpcoins_purple", + "S15-Quest:quest_s15_w09_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w10_xpcoins_green", + "S15-Quest:quest_s15_w10_xpcoins_blue", + "S15-Quest:quest_s15_w10_xpcoins_purple", + "S15-Quest:quest_s15_w10_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w11_xpcoins_green", + "S15-Quest:quest_s15_w11_xpcoins_blue", + "S15-Quest:quest_s15_w11_xpcoins_purple", + "S15-Quest:quest_s15_w11_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w12_xpcoins_green", + "S15-Quest:quest_s15_w12_xpcoins_blue", + "S15-Quest:quest_s15_w12_xpcoins_purple", + "S15-Quest:quest_s15_w12_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w13_xpcoins_green", + "S15-Quest:quest_s15_w13_xpcoins_blue", + "S15-Quest:quest_s15_w13_xpcoins_purple", + "S15-Quest:quest_s15_w13_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w14_xpcoins_green", + "S15-Quest:quest_s15_w14_xpcoins_blue", + "S15-Quest:quest_s15_w14_xpcoins_purple", + "S15-Quest:quest_s15_w14_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w15_xpcoins_green", + "S15-Quest:quest_s15_w15_xpcoins_blue", + "S15-Quest:quest_s15_w15_xpcoins_purple", + "S15-Quest:quest_s15_w15_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w16_xpcoins_green", + "S15-Quest:quest_s15_w16_xpcoins_blue", + "S15-Quest:quest_s15_w16_xpcoins_purple", + "S15-Quest:quest_s15_w16_xpcoins_gold" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_CoinCollect" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_HiddenRole", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_HiddenRole_CompleteEventChallenges", + "S15-Quest:Quest_S15_HiddenRole_PlayMatches", + "S15-Quest:Quest_S15_HiddenRole_EliminatePlayers", + "S15-Quest:Quest_S15_HiddenRole_CompleteTasks" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_HiddenRole" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_01", + "S15-Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_02", + "S15-Quest:Quest_S15_OperationSnowdown_01_VisitSnowdownOutposts", + "S15-Quest:Quest_S15_OperationSnowdown_02_OpenChestsSnowmandoOutposts", + "S15-Quest:Quest_S15_OperationSnowdown_03_DanceHolidayTrees", + "S15-Quest:Quest_S15_OperationSnowdown_04_FriendsTop10", + "S15-Quest:Quest_S15_OperationSnowdown_05_DestroyNutcrackers", + "S15-Quest:Quest_S15_OperationSnowdown_06_X4Travel", + "S15-Quest:Quest_S15_OperationSnowdown_07_DestroyStructuresX4", + "S15-Quest:Quest_S15_OperationSnowdown_08_CollectGoldBars", + "S15-Quest:Quest_S15_OperationSnowdown_09_FishFlopper", + "S15-Quest:Quest_S15_OperationSnowdown_10_RevivePlayers", + "S15-Quest:Quest_S15_OperationSnowdown_11_HideSneakySnowman", + "S15-Quest:Quest_S15_OperationSnowdown_12_PlayWithFriends", + "S15-Quest:Quest_S15_OperationSnowdown_13_DamageSnowdownWeapons", + "S15-Quest:Quest_S15_OperationSnowdown_14_StokeCampfire" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_OperationSnowdown" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro", + "templateId": "ChallengeBundle:QuestBundle_Event_S15_PlumRetro", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_PlumRetro_CompleteEventChallenges", + "S15-Quest:Quest_S15_PlumRetro_PlayMatches", + "S15-Quest:Quest_S15_PlumRetro_OutlastOpponents", + "S15-Quest:Quest_S15_PlumRetro_PlayWithFriends" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Event_PlumRetro" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W1_SR_Q02a", + "S15-Quest:Quest_S15_W1_SR_Q01b", + "S15-Quest:Quest_S15_W1_SR_Q01c", + "S15-Quest:Quest_S15_W1_SR_Q01d", + "S15-Quest:Quest_S15_W1_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W2_SR_Q01a", + "S15-Quest:Quest_S15_W2_SR_Q01b", + "S15-Quest:Quest_S15_W2_SR_Q01c", + "S15-Quest:Quest_S15_W2_SR_Q01d", + "S15-Quest:Quest_S15_W2_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W3_SR_Q01a", + "S15-Quest:Quest_S15_W3_SR_Q01b", + "S15-Quest:Quest_S15_W3_SR_Q01c", + "S15-Quest:Quest_S15_W3_SR_Q01d", + "S15-Quest:Quest_S15_W3_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_04", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w04_bushranger_sr_q0a_damage_from_above", + "S15-Quest:quest_s15_w04_bushranger_sr_q0b_damage_from_above", + "S15-Quest:quest_s15_w04_bushranger_sr_q0c_damage_from_above", + "S15-Quest:quest_s15_w04_bushranger_sr_q0d_damage_from_above", + "S15-Quest:quest_s15_w04_bushranger_sr_q0e_damage_from_above" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_05", + "grantedquestinstanceids": [ + "S15-Quest:quest_s15_w05_guide_sr_q01a", + "S15-Quest:quest_s15_w05_guide_sr_q01b", + "S15-Quest:quest_s15_w05_guide_sr_q01c", + "S15-Quest:quest_s15_w05_guide_sr_q01d", + "S15-Quest:quest_s15_w05_guide_sr_q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_06", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W6_SR_Q01a", + "S15-Quest:Quest_S15_W6_SR_Q01b", + "S15-Quest:Quest_S15_W6_SR_Q01c", + "S15-Quest:Quest_S15_W6_SR_Q01d", + "S15-Quest:Quest_S15_W6_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_06" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_07", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W7_SR_Q01a", + "S15-Quest:Quest_S15_W7_SR_Q01b", + "S15-Quest:Quest_S15_W7_SR_Q01c", + "S15-Quest:Quest_S15_W7_SR_Q01d", + "S15-Quest:Quest_S15_W7_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_07" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_08", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W8_SR_Q01a", + "S15-Quest:Quest_S15_W8_SR_Q01b", + "S15-Quest:Quest_S15_W8_SR_Q01c", + "S15-Quest:Quest_S15_W8_SR_Q01d", + "S15-Quest:Quest_S15_W8_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_08" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_09", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W9_SR_Q01a", + "S15-Quest:Quest_S15_W9_SR_Q01b", + "S15-Quest:Quest_S15_W9_SR_Q01c", + "S15-Quest:Quest_S15_W9_SR_Q01d", + "S15-Quest:Quest_S15_W9_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_09" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_10", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W10_SR_Q01a", + "S15-Quest:Quest_S15_W10_SR_Q01b", + "S15-Quest:Quest_S15_W10_SR_Q01c", + "S15-Quest:Quest_S15_W10_SR_Q01d", + "S15-Quest:Quest_S15_W10_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_10" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_11", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W11_SR_Q01a", + "S15-Quest:Quest_S15_W11_SR_Q01b", + "S15-Quest:Quest_S15_W11_SR_Q01c", + "S15-Quest:Quest_S15_W11_SR_Q01d", + "S15-Quest:Quest_S15_W11_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_11" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_12", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W12_SR_Q01a", + "S15-Quest:Quest_S15_W12_SR_Q01b", + "S15-Quest:Quest_S15_W12_SR_Q01c", + "S15-Quest:Quest_S15_W12_SR_Q01d", + "S15-Quest:Quest_S15_W12_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_12" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_13", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W13_SR_Q01a", + "S15-Quest:Quest_S15_W13_SR_Q01b", + "S15-Quest:Quest_S15_W13_SR_Q01c", + "S15-Quest:Quest_S15_W13_SR_Q01d", + "S15-Quest:Quest_S15_W13_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_13" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_14", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W14_SR_Q01a", + "S15-Quest:Quest_S15_W14_SR_Q01b", + "S15-Quest:Quest_S15_W14_SR_Q01c", + "S15-Quest:Quest_S15_W14_SR_Q01d", + "S15-Quest:Quest_S15_W14_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_14" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15", + "templateId": "ChallengeBundle:QuestBundle_S15_Legendary_Week_15", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_W15_SR_Q01a", + "S15-Quest:Quest_S15_W15_SR_Q01b", + "S15-Quest:Quest_S15_W15_SR_Q01c", + "S15-Quest:Quest_S15_W15_SR_Q01d", + "S15-Quest:Quest_S15_W15_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_Schedule_Legendary_Week_15" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_01", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T1_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T1_01_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_02", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T1_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T1_02_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_03", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T1_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T1_03_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_04", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T1_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T1_04_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_05", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T1_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T1_05_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T1_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_01", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T2_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T2_01_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_02", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T2_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T2_02_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_03", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T2_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T2_03_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_04", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T2_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T2_04_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_05", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T2_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T2_05_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T2_Schedule_05" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_01", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T3_01", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T3_01_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_01" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_02", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T3_02", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T3_02_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_02" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_03", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T3_03", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T3_03_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_03" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_04", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T3_04", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T3_04_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_04" + }, + { + "itemGuid": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_05", + "templateId": "ChallengeBundle:QuestBundle_S15_SuperStyles_T3_05", + "grantedquestinstanceids": [ + "S15-Quest:Quest_S15_Style_SuperStyles_T3_05_q01" + ], + "challenge_bundle_schedule_id": "S15-ChallengeBundleSchedule:Season15_SuperStyles_T3_Schedule_05" + } + ], + "Quests": [ + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_00_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_00_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_00_q01_obj01", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_00" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_01_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_01_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_01_q02_obj01", + "count": 12 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_00" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_01_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_01_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_01_q01_obj01", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_01_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_01_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_01_q02_obj01", + "count": 12 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_02_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_02_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_02_q01_obj01", + "count": 19 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_03_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_03_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_03_q01_obj01", + "count": 29 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_03_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_03_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_03_q02_obj01", + "count": 26 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_04_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_04_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_04_q01_obj01", + "count": 33 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_05_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_05_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_05_q01_obj01", + "count": 60 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_05_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_05_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_05_q02_obj01", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_06_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_06_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_06_q01_obj01", + "count": 45 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_07_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_07_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_07_q01_obj01", + "count": 73 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_07_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_07_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_07_q02_obj01", + "count": 52 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_08_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_08_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_08_q01_obj01", + "count": 59 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_09_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_09_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_09_q01_obj01", + "count": 79 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_09_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_09_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_09_q02_obj01", + "count": 66 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_10_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_10_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_10_q01_obj01", + "count": 73 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_11_q01", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_11_q01", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_11_q01_obj01", + "count": 96 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_AlternateStyles_11_q02", + "templateId": "Quest:Quest_S15_Style_AlternateStyles_11_q02", + "objectives": [ + { + "name": "quest_style_s15alternatestyles_11_q02_obj01", + "count": 80 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_AlternateStyles_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q01b", + "templateId": "Quest:Quest_S15_Cosmos_Q01b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q01b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q02b", + "templateId": "Quest:Quest_S15_Cosmos_Q02b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q02b_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q03b", + "templateId": "Quest:Quest_S15_Cosmos_Q03b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q03b_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q04b", + "templateId": "Quest:Quest_S15_Cosmos_Q04b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q04b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q05b", + "templateId": "Quest:Quest_S15_Cosmos_Q05b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q05b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q06b", + "templateId": "Quest:Quest_S15_Cosmos_Q06b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q06b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q07b", + "templateId": "Quest:Quest_S15_Cosmos_Q07b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q07b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q08b", + "templateId": "Quest:Quest_S15_Cosmos_Q08b", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q08b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Cosmos_Q09_Cumulative", + "templateId": "Quest:Quest_S15_Cosmos_Q09_Cumulative", + "objectives": [ + { + "name": "Quest_S15_Cosmos_Q09_Cumulative_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Cosmos_09_Cumulative" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q1_ignite_opponent", + "templateId": "Quest:quest_s15_milestone_blaze_r_q1_ignite_opponent", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_opponents", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q2_ignite_opponent", + "templateId": "Quest:quest_s15_milestone_blaze_r_q2_ignite_opponent", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_opponents", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q3_ignite_opponent", + "templateId": "Quest:quest_s15_milestone_blaze_r_q3_ignite_opponent", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_opponents", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q4_ignite_opponent", + "templateId": "Quest:quest_s15_milestone_blaze_r_q4_ignite_opponent", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_opponents", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q5_ignite_opponent", + "templateId": "Quest:quest_s15_milestone_blaze_r_q5_ignite_opponent", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_opponents", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_opponent" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q1_ignite_structure", + "templateId": "Quest:quest_s15_milestone_blaze_r_q1_ignite_structure", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_structures", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q2_ignite_structure", + "templateId": "Quest:quest_s15_milestone_blaze_r_q2_ignite_structure", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_structures", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q3_ignite_structure", + "templateId": "Quest:quest_s15_milestone_blaze_r_q3_ignite_structure", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_structures", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q4_ignite_structure", + "templateId": "Quest:quest_s15_milestone_blaze_r_q4_ignite_structure", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_structures", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_blaze_r_q5_ignite_structure", + "templateId": "Quest:quest_s15_milestone_blaze_r_q5_ignite_structure", + "objectives": [ + { + "name": "quest_s15_milestone_blaze_r_ignite_structures", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_blaze_ignite_structure" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_apple", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q1_interact_apple", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_apple", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_apple", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q2_interact_apple", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_apple", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_apple", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q3_interact_apple", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_apple", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_apple", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q4_interact_apple", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_apple", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_apple", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q5_interact_apple", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_apple", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_apple" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_banana", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q1_interact_banana", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_banana", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_banana", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q2_interact_banana", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_banana", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_banana", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q3_interact_banana", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_banana", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_banana", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q4_interact_banana", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_banana", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_banana", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q5_interact_banana", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_banana", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_banana" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_campfire", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q1_interact_campfire", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_campfire", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_campfire", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q2_interact_campfire", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_campfire", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_campfire", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q3_interact_campfire", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_campfire", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_campfire", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q4_interact_campfire", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_campfire", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_campfire", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q5_interact_campfire", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_campfire", + "count": 150 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_campfire" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_forageditem", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q1_interact_forageditem", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_forageditem", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_forageditem", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q2_interact_forageditem", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_forageditem", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_forageditem", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q3_interact_forageditem", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_forageditem", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_forageditem", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q4_interact_forageditem", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_forageditem", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_forageditem", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q5_interact_forageditem", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_forageditem", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_forageditem" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q1_interact_mushroom", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q1_interact_mushroom", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_mushroom", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q2_interact_mushroom", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q2_interact_mushroom", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_mushroom", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q3_interact_mushroom", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q3_interact_mushroom", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_mushroom", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q4_interact_mushroom", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q4_interact_mushroom", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_mushroom", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom" + }, + { + "itemGuid": "S15-Quest:quest_s15_milestone_bushranger_r_q5_interact_mushroom", + "templateId": "Quest:quest_s15_milestone_bushranger_r_q5_interact_mushroom", + "objectives": [ + { + "name": "quest_s15_milestone_bushranger_r_interact_mushroom", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:questbundle_s15_milestone_bushranger_interact_mushroom" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CatchFish_Q01", + "templateId": "Quest:Quest_S15_Milestone_CatchFish_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_CatchFish", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CatchFish_Q02", + "templateId": "Quest:Quest_S15_Milestone_CatchFish_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_CatchFish", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CatchFish_Q03", + "templateId": "Quest:Quest_S15_Milestone_CatchFish_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_CatchFish", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CatchFish_Q04", + "templateId": "Quest:Quest_S15_Milestone_CatchFish_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_CatchFish", + "count": 125 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CatchFish_Q05", + "templateId": "Quest:Quest_S15_Milestone_CatchFish_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_CatchFish", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_CatchFish" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CollectGold_Q01", + "templateId": "Quest:Quest_S15_Milestone_CollectGold_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_CollectGold", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CollectGold_Q02", + "templateId": "Quest:Quest_S15_Milestone_CollectGold_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_CollectGold", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CollectGold_Q03", + "templateId": "Quest:Quest_S15_Milestone_CollectGold_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_CollectGold", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CollectGold_Q04", + "templateId": "Quest:Quest_S15_Milestone_CollectGold_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_CollectGold", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CollectGold_Q05", + "templateId": "Quest:Quest_S15_Milestone_CollectGold_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_CollectGold", + "count": 50000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Collect_Gold" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q01", + "templateId": "Quest:Quest_S15_Milestone_CompleteBounties_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_CompleteBounties", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q02", + "templateId": "Quest:Quest_S15_Milestone_CompleteBounties_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_CompleteBounties", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q03", + "templateId": "Quest:Quest_S15_Milestone_CompleteBounties_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_CompleteBounties", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q04", + "templateId": "Quest:Quest_S15_Milestone_CompleteBounties_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_CompleteBounties", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_CompleteBounties_Q05", + "templateId": "Quest:Quest_S15_Milestone_CompleteBounties_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_CompleteBounties", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q01", + "templateId": "Quest:Quest_S15_Milestone_Complete_CQuest_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_CQuest", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q02", + "templateId": "Quest:Quest_S15_Milestone_Complete_CQuest_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_CQuest", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q03", + "templateId": "Quest:Quest_S15_Milestone_Complete_CQuest_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_CQuest", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q04", + "templateId": "Quest:Quest_S15_Milestone_Complete_CQuest_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_CQuest", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_CQuest_Q05", + "templateId": "Quest:Quest_S15_Milestone_Complete_CQuest_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_CQuest", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q01", + "templateId": "Quest:Quest_S15_Milestone_Complete_EQuest_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_EQuest", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q02", + "templateId": "Quest:Quest_S15_Milestone_Complete_EQuest_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_EQuest", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q03", + "templateId": "Quest:Quest_S15_Milestone_Complete_EQuest_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_EQuest", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q04", + "templateId": "Quest:Quest_S15_Milestone_Complete_EQuest_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_EQuest", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_EQuest_Q05", + "templateId": "Quest:Quest_S15_Milestone_Complete_EQuest_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_EQuest", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q01", + "templateId": "Quest:Quest_S15_Milestone_Complete_LQuest_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_LQuest", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q02", + "templateId": "Quest:Quest_S15_Milestone_Complete_LQuest_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_LQuest", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q03", + "templateId": "Quest:Quest_S15_Milestone_Complete_LQuest_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_LQuest", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q04", + "templateId": "Quest:Quest_S15_Milestone_Complete_LQuest_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_LQuest", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_LQuest_Q05", + "templateId": "Quest:Quest_S15_Milestone_Complete_LQuest_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_LQuest", + "count": 60 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q01", + "templateId": "Quest:Quest_S15_Milestone_Complete_RQuest_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_RQuest", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q02", + "templateId": "Quest:Quest_S15_Milestone_Complete_RQuest_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_RQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q03", + "templateId": "Quest:Quest_S15_Milestone_Complete_RQuest_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_RQuest", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q04", + "templateId": "Quest:Quest_S15_Milestone_Complete_RQuest_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_RQuest", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_RQuest_Q05", + "templateId": "Quest:Quest_S15_Milestone_Complete_RQuest_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_RQuest", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q01", + "templateId": "Quest:Quest_S15_Milestone_Complete_UCQuest_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_UCQuest", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q02", + "templateId": "Quest:Quest_S15_Milestone_Complete_UCQuest_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_UCQuest", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q03", + "templateId": "Quest:Quest_S15_Milestone_Complete_UCQuest_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_UCQuest", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q04", + "templateId": "Quest:Quest_S15_Milestone_Complete_UCQuest_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_UCQuest", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Complete_UCQuest_Q05", + "templateId": "Quest:Quest_S15_Milestone_Complete_UCQuest_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Complete_UCQuest", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q01", + "templateId": "Quest:Quest_S15_Milestone_Dmg_Opponents_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Dmg_Opponents", + "count": 5000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q02", + "templateId": "Quest:Quest_S15_Milestone_Dmg_Opponents_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Dmg_Opponents", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q03", + "templateId": "Quest:Quest_S15_Milestone_Dmg_Opponents_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Dmg_Opponents", + "count": 75000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q04", + "templateId": "Quest:Quest_S15_Milestone_Dmg_Opponents_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Dmg_Opponents", + "count": 15000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Dmg_Opponents_Q05", + "templateId": "Quest:Quest_S15_Milestone_Dmg_Opponents_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Dmg_Opponents", + "count": 500000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_opponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q01", + "templateId": "Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Damage_PlayerVehicle", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q02", + "templateId": "Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Damage_PlayerVehicle", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q03", + "templateId": "Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Damage_PlayerVehicle", + "count": 5000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q04", + "templateId": "Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Damage_PlayerVehicle", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q05", + "templateId": "Quest:Quest_S15_Milestone_Damage_PlayerVehicle_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Damage_PlayerVehicle", + "count": 20000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q01", + "templateId": "Quest:Quest_S15_Milestone_DestroyShrubs_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyShrubs", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q02", + "templateId": "Quest:Quest_S15_Milestone_DestroyShrubs_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyShrubs", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q03", + "templateId": "Quest:Quest_S15_Milestone_DestroyShrubs_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyShrubs", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q04", + "templateId": "Quest:Quest_S15_Milestone_DestroyShrubs_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyShrubs", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyShrubs_Q05", + "templateId": "Quest:Quest_S15_Milestone_DestroyShrubs_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyShrubs", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyStones_Q01", + "templateId": "Quest:Quest_S15_Milestone_DestroyStones_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyStones", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyStones_Q02", + "templateId": "Quest:Quest_S15_Milestone_DestroyStones_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyStones", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyStones_Q03", + "templateId": "Quest:Quest_S15_Milestone_DestroyStones_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyStones", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyStones_Q04", + "templateId": "Quest:Quest_S15_Milestone_DestroyStones_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyStones", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_DestroyStones_Q05", + "templateId": "Quest:Quest_S15_Milestone_DestroyStones_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_DestroyStones", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q01", + "templateId": "Quest:Quest_S15_Milestone_Destroy_Trees_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Destroy_Trees", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q02", + "templateId": "Quest:Quest_S15_Milestone_Destroy_Trees_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Destroy_Trees", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q03", + "templateId": "Quest:Quest_S15_Milestone_Destroy_Trees_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Destroy_Trees", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q04", + "templateId": "Quest:Quest_S15_Milestone_Destroy_Trees_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Destroy_Trees", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Destroy_Trees_Q05", + "templateId": "Quest:Quest_S15_Milestone_Destroy_Trees_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Destroy_Trees", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q01", + "templateId": "Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_TravelDistance_OnFoot", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q02", + "templateId": "Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_TravelDistance_OnFoot", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q03", + "templateId": "Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_TravelDistance_OnFoot", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q04", + "templateId": "Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_TravelDistance_OnFoot", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q05", + "templateId": "Quest:Quest_S15_Milestone_TravelDistance_OnFoot_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_TravelDistance_OnFoot", + "count": 50000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_150m_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_150m_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_150m", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_150m_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_150m_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_150m", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_150m_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_150m_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_150m", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_150m_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_150m_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_150m", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_150m_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_150m_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_150m", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_150m" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Assault_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Assault", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Assault_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Assault", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Assault_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Assault", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Assault_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Assault", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Assault_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Assault_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Assault", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Assault" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Common_Uncommon", + "count": 2 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Common_Uncommon", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Common_Uncommon", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Common_Uncommon", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Common_Uncommon_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Common_Uncommon", + "count": 125 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Explosive_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Explosive", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Explosive_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Explosive", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Explosive_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Explosive", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Explosive_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Explosive", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Explosive_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Explosive_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Explosive", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Pistol_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Pistol", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Pistol_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Pistol", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Pistol_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Pistol", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Pistol_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Pistol", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Pistol_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Pistol_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Pistol", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Player_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Player_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Player", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Player_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Player_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Player", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Player_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Player_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Player", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Player_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Player_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Player", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Player_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Player_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Player", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Player" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Shotgun_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Shotgun", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Shotgun_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Shotgun", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Shotgun_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Shotgun", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Shotgun_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Shotgun", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Shotgun_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Shotgun_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Shotgun", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_SMG_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_SMG", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_SMG_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_SMG", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_SMG_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_SMG", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_SMG_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_SMG", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_SMG_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_SMG_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_SMG", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_SMG" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q01", + "templateId": "Quest:Quest_S15_Milestone_Elim_Sniper_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Sniper", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q02", + "templateId": "Quest:Quest_S15_Milestone_Elim_Sniper_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Sniper", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q03", + "templateId": "Quest:Quest_S15_Milestone_Elim_Sniper_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Sniper", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q04", + "templateId": "Quest:Quest_S15_Milestone_Elim_Sniper_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Sniper", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Elim_Sniper_Q05", + "templateId": "Quest:Quest_S15_Milestone_Elim_Sniper_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Elim_Sniper", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_GlideDistance_Q01", + "templateId": "Quest:Quest_S15_Milestone_GlideDistance_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_GlideDistance", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_GlideDistance_Q02", + "templateId": "Quest:Quest_S15_Milestone_GlideDistance_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_GlideDistance", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_GlideDistance_Q03", + "templateId": "Quest:Quest_S15_Milestone_GlideDistance_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_GlideDistance", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_GlideDistance_Q04", + "templateId": "Quest:Quest_S15_Milestone_GlideDistance_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_GlideDistance", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_GlideDistance_Q05", + "templateId": "Quest:Quest_S15_Milestone_GlideDistance_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_GlideDistance", + "count": 50000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_GlideDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q01", + "templateId": "Quest:Quest_S15_Milestone_Harvest_Stone_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Harvest_Stone", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q02", + "templateId": "Quest:Quest_S15_Milestone_Harvest_Stone_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Harvest_Stone", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q03", + "templateId": "Quest:Quest_S15_Milestone_Harvest_Stone_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Harvest_Stone", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q04", + "templateId": "Quest:Quest_S15_Milestone_Harvest_Stone_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Harvest_Stone", + "count": 100000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Harvest_Stone_Q05", + "templateId": "Quest:Quest_S15_Milestone_Harvest_Stone_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Harvest_Stone", + "count": 250000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q01", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Furniture", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q02", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Furniture", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q03", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Furniture", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q04", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Furniture", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q05", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Furniture_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Furniture", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q01", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Structures", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q02", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Structures", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q03", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Structures", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q04", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Structures", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q05", + "templateId": "Quest:Quest_S15_Milestone_MeleeDmg_Structures_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeDmg_Structures", + "count": 50000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeKills_Q01", + "templateId": "Quest:Quest_S15_Milestone_MeleeKills_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeKills", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeKills_Q02", + "templateId": "Quest:Quest_S15_Milestone_MeleeKills_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeKills", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeKills_Q03", + "templateId": "Quest:Quest_S15_Milestone_MeleeKills_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeKills", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeKills_Q04", + "templateId": "Quest:Quest_S15_Milestone_MeleeKills_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeKills", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_MeleeKills_Q05", + "templateId": "Quest:Quest_S15_Milestone_MeleeKills_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_MeleeKills", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Melee_Elims" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Top10_Q01", + "templateId": "Quest:Quest_S15_Milestone_Top10_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Top10", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Top10_Q02", + "templateId": "Quest:Quest_S15_Milestone_Top10_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Top10", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Top10_Q03", + "templateId": "Quest:Quest_S15_Milestone_Top10_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Top10", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Top10_Q04", + "templateId": "Quest:Quest_S15_Milestone_Top10_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Top10", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Top10_Q05", + "templateId": "Quest:Quest_S15_Milestone_Top10_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Top10", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Place_Top10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q01", + "templateId": "Quest:Quest_S15_Milestone_RebootTeammate_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_RebootTeammate", + "count": 2 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q02", + "templateId": "Quest:Quest_S15_Milestone_RebootTeammate_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_RebootTeammate", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q03", + "templateId": "Quest:Quest_S15_Milestone_RebootTeammate_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_RebootTeammate", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q04", + "templateId": "Quest:Quest_S15_Milestone_RebootTeammate_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_RebootTeammate", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_RebootTeammate_Q05", + "templateId": "Quest:Quest_S15_Milestone_RebootTeammate_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_RebootTeammate", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_RebootTeammate" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q01", + "templateId": "Quest:Quest_S15_Milestone_ReviveTeammates_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_ReviveTeammates", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q02", + "templateId": "Quest:Quest_S15_Milestone_ReviveTeammates_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_ReviveTeammates", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q03", + "templateId": "Quest:Quest_S15_Milestone_ReviveTeammates_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_ReviveTeammates", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q04", + "templateId": "Quest:Quest_S15_Milestone_ReviveTeammates_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_ReviveTeammates", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ReviveTeammates_Q05", + "templateId": "Quest:Quest_S15_Milestone_ReviveTeammates_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_ReviveTeammates", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q01", + "templateId": "Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_AmmoBoxes", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q02", + "templateId": "Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_AmmoBoxes", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q03", + "templateId": "Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_AmmoBoxes", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q04", + "templateId": "Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_AmmoBoxes", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q05", + "templateId": "Quest:Quest_S15_Milestone_Search_AmmoBoxes_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_AmmoBoxes", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_Chests_Q01", + "templateId": "Quest:Quest_S15_Milestone_Search_Chests_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_Chests", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_Chests_Q02", + "templateId": "Quest:Quest_S15_Milestone_Search_Chests_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_Chests", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_Chests_Q03", + "templateId": "Quest:Quest_S15_Milestone_Search_Chests_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_Chests", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_Chests_Q04", + "templateId": "Quest:Quest_S15_Milestone_Search_Chests_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_Chests", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_Chests_Q05", + "templateId": "Quest:Quest_S15_Milestone_Search_Chests_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_Chests", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_Chests" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q01", + "templateId": "Quest:Quest_S15_Milestone_Search_SupplyDrop_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_SupplyDrop", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q02", + "templateId": "Quest:Quest_S15_Milestone_Search_SupplyDrop_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_SupplyDrop", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q03", + "templateId": "Quest:Quest_S15_Milestone_Search_SupplyDrop_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_SupplyDrop", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q04", + "templateId": "Quest:Quest_S15_Milestone_Search_SupplyDrop_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_SupplyDrop", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_Search_SupplyDrop_Q05", + "templateId": "Quest:Quest_S15_Milestone_Search_SupplyDrop_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_Search_SupplyDrop", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q01", + "templateId": "Quest:Quest_S15_Milestone_ShakedownOpponents_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_ShakedownOpponents", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q02", + "templateId": "Quest:Quest_S15_Milestone_ShakedownOpponents_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_ShakedownOpponents", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q03", + "templateId": "Quest:Quest_S15_Milestone_ShakedownOpponents_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_ShakedownOpponents", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q04", + "templateId": "Quest:Quest_S15_Milestone_ShakedownOpponents_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_ShakedownOpponents", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_ShakedownOpponents_Q05", + "templateId": "Quest:Quest_S15_Milestone_ShakedownOpponents_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_ShakedownOpponents", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_SwimDistance_Q01", + "templateId": "Quest:Quest_S15_Milestone_SwimDistance_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_SwimDistance", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_SwimDistance_Q02", + "templateId": "Quest:Quest_S15_Milestone_SwimDistance_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_SwimDistance", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_SwimDistance_Q03", + "templateId": "Quest:Quest_S15_Milestone_SwimDistance_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_SwimDistance", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_SwimDistance_Q04", + "templateId": "Quest:Quest_S15_Milestone_SwimDistance_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_SwimDistance", + "count": 10000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_SwimDistance_Q05", + "templateId": "Quest:Quest_S15_Milestone_SwimDistance_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_SwimDistance", + "count": 25000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_SwimDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q01", + "templateId": "Quest:Quest_S15_Milestone_UpgradeWeapons_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_UpgradeWeapons", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q02", + "templateId": "Quest:Quest_S15_Milestone_UpgradeWeapons_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_UpgradeWeapons", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q03", + "templateId": "Quest:Quest_S15_Milestone_UpgradeWeapons_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_UpgradeWeapons", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q04", + "templateId": "Quest:Quest_S15_Milestone_UpgradeWeapons_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_UpgradeWeapons", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UpgradeWeapons_Q05", + "templateId": "Quest:Quest_S15_Milestone_UpgradeWeapons_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_UpgradeWeapons", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q01", + "templateId": "Quest:Quest_S15_Milestone_UseFishingSpots_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_UseFishingSpots", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q02", + "templateId": "Quest:Quest_S15_Milestone_UseFishingSpots_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_UseFishingSpots", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q03", + "templateId": "Quest:Quest_S15_Milestone_UseFishingSpots_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_UseFishingSpots", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q04", + "templateId": "Quest:Quest_S15_Milestone_UseFishingSpots_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_UseFishingSpots", + "count": 150 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_UseFishingSpots_Q05", + "templateId": "Quest:Quest_S15_Milestone_UseFishingSpots_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_UseFishingSpots", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q01", + "templateId": "Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDestroy_Structures", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q02", + "templateId": "Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDestroy_Structures", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q03", + "templateId": "Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDestroy_Structures", + "count": 75 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q04", + "templateId": "Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDestroy_Structures", + "count": 150 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q05", + "templateId": "Quest:Quest_S15_Milestone_VehicleDestroy_Structures_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDestroy_Structures", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q01", + "templateId": "Quest:Quest_S15_Milestone_VehicleDistance_Q01", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDistance", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q02", + "templateId": "Quest:Quest_S15_Milestone_VehicleDistance_Q02", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDistance", + "count": 15000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q03", + "templateId": "Quest:Quest_S15_Milestone_VehicleDistance_Q03", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDistance", + "count": 50000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q04", + "templateId": "Quest:Quest_S15_Milestone_VehicleDistance_Q04", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDistance", + "count": 75000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Milestone_VehicleDistance_Q05", + "templateId": "Quest:Quest_S15_Milestone_VehicleDistance_Q05", + "objectives": [ + { + "name": "Quest_S15_Milestone_VehicleDistance", + "count": 100000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Milestone_VehicleDistance" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q01", + "templateId": "Quest:Quest_S15_W1_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj9", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj10", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj11", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj12", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj13", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj14", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj15", + "count": 1 + }, + { + "name": "Quest_S15_W1_VR_Q01_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q02", + "templateId": "Quest:Quest_S15_W1_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q03", + "templateId": "Quest:Quest_S15_W1_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q04", + "templateId": "Quest:Quest_S15_W1_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q05", + "templateId": "Quest:Quest_S15_W1_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q06", + "templateId": "Quest:Quest_S15_W1_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_VR_Q07", + "templateId": "Quest:Quest_S15_W1_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q07_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q01", + "templateId": "Quest:Quest_S15_W2_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q02", + "templateId": "Quest:Quest_S15_W2_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q02_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q02_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q02_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q02_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q02_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q03", + "templateId": "Quest:Quest_S15_W2_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q03_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q04", + "templateId": "Quest:Quest_S15_W2_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q05", + "templateId": "Quest:Quest_S15_W2_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q05_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q05_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q05_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q05_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q06", + "templateId": "Quest:Quest_S15_W2_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_VR_Q07", + "templateId": "Quest:Quest_S15_W2_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W2_VR_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W2_VR_Q07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q01", + "templateId": "Quest:Quest_S15_W3_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q02", + "templateId": "Quest:Quest_S15_W3_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q02_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q03", + "templateId": "Quest:Quest_S15_W3_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q04", + "templateId": "Quest:Quest_S15_W3_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q04_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q05", + "templateId": "Quest:Quest_S15_W3_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q06", + "templateId": "Quest:Quest_S15_W3_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_VR_Q07", + "templateId": "Quest:Quest_S15_W3_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W3_VR_Q07_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_03" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_kyle_vr_q2a_destroy_opponent_structures_pickaxe", + "templateId": "Quest:quest_s15_w04_kyle_vr_q2a_destroy_opponent_structures_pickaxe", + "objectives": [ + { + "name": "quest_s15_w04_kyle_vr_q2a_destroy_opponent_structures_pickaxe_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_cole_vr_q2b_damage_opponents_pickaxe", + "templateId": "Quest:quest_s15_w04_cole_vr_q2b_damage_opponents_pickaxe", + "objectives": [ + { + "name": "quest_s15_w04_cole_vr_q2b_damage_opponents_pickaxe_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_ragnarok_vr_q1a_kill_within_5m", + "templateId": "Quest:quest_s15_w04_ragnarok_vr_q1a_kill_within_5m", + "objectives": [ + { + "name": "quest_s15_w04_ragnarok_vr_q1a_kill_within_5m_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_gladiator_vr_q1b_kill_low_health", + "templateId": "Quest:quest_s15_w04_gladiator_vr_q1b_kill_low_health", + "objectives": [ + { + "name": "quest_s15_w04_gladiator_vr_q1b_kill_low_health_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bigchuggus_vr_q1c_kill_full_health_shield", + "templateId": "Quest:quest_s15_w04_bigchuggus_vr_q1c_kill_full_health_shield", + "objectives": [ + { + "name": "quest_s15_w04_bigchuggus_vr_q1c_kill_full_health_shield_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_tomatohead_vr_q3a_interact_tomatobasket", + "templateId": "Quest:quest_s15_w04_tomatohead_vr_q3a_interact_tomatobasket", + "objectives": [ + { + "name": "quest_s15_w04_tomatohead_vr_q3a_interact_tomatobasket_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_tomatohead_vr_q3b_ignite_dance_tomatoshrine", + "templateId": "Quest:quest_s15_w04_tomatohead_vr_q3b_ignite_dance_tomatoshrine", + "objectives": [ + { + "name": "quest_s15_w04_tomatohead_vr_q3b_ignite_dance_tomatoshrine_obj0", + "count": 1 + }, + { + "name": "quest_s15_w04_tomatohead_vr_q3b_ignite_dance_tomatoshrine_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_doggo_vr_q01", + "templateId": "Quest:quest_s15_w05_doggo_vr_q01", + "objectives": [ + { + "name": "quest_s15_w05_doggo_vr_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_grimbles_vr_q02", + "templateId": "Quest:quest_s15_w05_grimbles_vr_q02", + "objectives": [ + { + "name": "quest_s15_w05_grimbles_vr_q02_obj0", + "count": 1 + }, + { + "name": "quest_s15_w05_grimbles_vr_q02_obj1", + "count": 1 + }, + { + "name": "quest_s15_w05_grimbles_vr_q02_obj2", + "count": 1 + }, + { + "name": "quest_s15_w05_grimbles_vr_q02_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_grimbles_vr_q03", + "templateId": "Quest:quest_s15_w05_grimbles_vr_q03", + "objectives": [ + { + "name": "quest_s15_w05_grimbles_vr_q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_doggo_vr_q04", + "templateId": "Quest:quest_s15_w05_doggo_vr_q04", + "objectives": [ + { + "name": "quest_s15_w05_doggo_vr_q04_obj0", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q04_obj1", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q04_obj2", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_doggo_vr_q05", + "templateId": "Quest:quest_s15_w05_doggo_vr_q05", + "objectives": [ + { + "name": "quest_s15_w05_doggo_vr_q05_obj0", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q05_obj1", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q05_obj2", + "count": 1 + }, + { + "name": "quest_s15_w05_doggo_vr_q05_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_outlaw_vr_q06", + "templateId": "Quest:quest_s15_w05_outlaw_vr_q06", + "objectives": [ + { + "name": "quest_s15_w05_outlaw_vr_q06_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_outlaw_vr_q07", + "templateId": "Quest:quest_s15_w05_outlaw_vr_q07", + "objectives": [ + { + "name": "quest_s15_w05_outlaw_vr_q07_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q01", + "templateId": "Quest:Quest_S15_W6_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q03", + "templateId": "Quest:Quest_S15_W6_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W6_VR_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W6_VR_Q03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q04", + "templateId": "Quest:Quest_S15_W6_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q04_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q05", + "templateId": "Quest:Quest_S15_W6_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q05_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q02", + "templateId": "Quest:Quest_S15_W6_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q06", + "templateId": "Quest:Quest_S15_W6_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_VR_Q07", + "templateId": "Quest:Quest_S15_W6_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W6_VR_Q07_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q01", + "templateId": "Quest:Quest_S15_W7_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q01_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q02", + "templateId": "Quest:Quest_S15_W7_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q03", + "templateId": "Quest:Quest_S15_W7_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q03_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q04", + "templateId": "Quest:Quest_S15_W7_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q05", + "templateId": "Quest:Quest_S15_W7_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q05_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q06", + "templateId": "Quest:Quest_S15_W7_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_VR_Q07", + "templateId": "Quest:Quest_S15_W7_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q01", + "templateId": "Quest:Quest_S15_W8_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q02", + "templateId": "Quest:Quest_S15_W8_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q03", + "templateId": "Quest:Quest_S15_W8_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q04", + "templateId": "Quest:Quest_S15_W8_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q05", + "templateId": "Quest:Quest_S15_W8_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q06", + "templateId": "Quest:Quest_S15_W8_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_VR_Q07", + "templateId": "Quest:Quest_S15_W8_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W8_VR_Q07_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q01", + "templateId": "Quest:Quest_S15_W9_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q02", + "templateId": "Quest:Quest_S15_W9_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q03", + "templateId": "Quest:Quest_S15_W9_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q04", + "templateId": "Quest:Quest_S15_W9_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q05", + "templateId": "Quest:Quest_S15_W9_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q06", + "templateId": "Quest:Quest_S15_W9_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_VR_Q07", + "templateId": "Quest:Quest_S15_W9_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W9_VR_Q07_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q01", + "templateId": "Quest:Quest_S15_W10_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q02", + "templateId": "Quest:Quest_S15_W10_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q03", + "templateId": "Quest:Quest_S15_W10_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q04", + "templateId": "Quest:Quest_S15_W10_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q05", + "templateId": "Quest:Quest_S15_W10_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q06", + "templateId": "Quest:Quest_S15_W10_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_VR_Q07", + "templateId": "Quest:Quest_S15_W10_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W10_VR_Q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q01", + "templateId": "Quest:Quest_S15_W11_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj9", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj10", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj11", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj12", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q01_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q02", + "templateId": "Quest:Quest_S15_W11_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q03", + "templateId": "Quest:Quest_S15_W11_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q04", + "templateId": "Quest:Quest_S15_W11_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q05", + "templateId": "Quest:Quest_S15_W11_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q06", + "templateId": "Quest:Quest_S15_W11_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W11_VR_Q06_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_VR_Q07", + "templateId": "Quest:Quest_S15_W11_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W11_VR_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q01", + "templateId": "Quest:Quest_S15_W12_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q01_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q02", + "templateId": "Quest:Quest_S15_W12_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q02_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q03", + "templateId": "Quest:Quest_S15_W12_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q04", + "templateId": "Quest:Quest_S15_W12_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q04_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q05", + "templateId": "Quest:Quest_S15_W12_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q06", + "templateId": "Quest:Quest_S15_W12_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_VR_Q07", + "templateId": "Quest:Quest_S15_W12_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W12_VR_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W12_VR_Q07_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q01", + "templateId": "Quest:Quest_S15_W13_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q02", + "templateId": "Quest:Quest_S15_W13_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q03", + "templateId": "Quest:Quest_S15_W13_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q03_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q04", + "templateId": "Quest:Quest_S15_W13_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q04_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q05", + "templateId": "Quest:Quest_S15_W13_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q06", + "templateId": "Quest:Quest_S15_W13_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_VR_Q07", + "templateId": "Quest:Quest_S15_W13_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W13_VR_Q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q01", + "templateId": "Quest:Quest_S15_W14_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q01_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q02", + "templateId": "Quest:Quest_S15_W14_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q02_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q03", + "templateId": "Quest:Quest_S15_W14_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q03_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q04", + "templateId": "Quest:Quest_S15_W14_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj5", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj6", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj7", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj8", + "count": 1 + }, + { + "name": "Quest_S15_W14_VR_Q04_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q05", + "templateId": "Quest:Quest_S15_W14_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q06", + "templateId": "Quest:Quest_S15_W14_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W7_VR_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S15_W7_VR_Q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_VR_Q07", + "templateId": "Quest:Quest_S15_W14_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W14_VR_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q01", + "templateId": "Quest:Quest_S15_W15_VR_Q01", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q02", + "templateId": "Quest:Quest_S15_W15_VR_Q02", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q03", + "templateId": "Quest:Quest_S15_W15_VR_Q03", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q04", + "templateId": "Quest:Quest_S15_W15_VR_Q04", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q05", + "templateId": "Quest:Quest_S15_W15_VR_Q05", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q06", + "templateId": "Quest:Quest_S15_W15_VR_Q06", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_VR_Q07", + "templateId": "Quest:Quest_S15_W15_VR_Q07", + "objectives": [ + { + "name": "Quest_S15_W15_VR_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:MissionBundle_S15_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_01_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_01_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_01_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_02_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_02_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_03_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_03_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_03_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_04_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_04_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_04_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_05_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_05_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_05_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_06_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_06_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_06_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_07_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_07_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_07_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_08_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_08_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_08_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_09_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_Mystery_09_q01", + "templateId": "Quest:Quest_S15_Style_Mystery_09_q01", + "objectives": [ + { + "name": "quest_style_s15mystery_02_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Mystery_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q01", + "templateId": "Quest:quest_s15_nightmare_q01", + "objectives": [ + { + "name": "quest_s15_nightmare_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_01" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q02", + "templateId": "Quest:quest_s15_nightmare_q02", + "objectives": [ + { + "name": "quest_s15_nightmare_q02_obj0", + "count": 1 + }, + { + "name": "quest_s15_nightmare_q02_obj1", + "count": 1 + }, + { + "name": "quest_s15_nightmare_q02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_02" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q03", + "templateId": "Quest:quest_s15_nightmare_q03", + "objectives": [ + { + "name": "quest_s15_nightmare_q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_03" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q04", + "templateId": "Quest:quest_s15_nightmare_q04", + "objectives": [ + { + "name": "quest_s15_nightmare_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q05", + "templateId": "Quest:quest_s15_nightmare_q05", + "objectives": [ + { + "name": "quest_s15_nightmare_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q06", + "templateId": "Quest:quest_s15_nightmare_q06", + "objectives": [ + { + "name": "quest_s15_nightmare_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_06" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q07", + "templateId": "Quest:quest_s15_nightmare_q07", + "objectives": [ + { + "name": "quest_s15_nightmare_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_07" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q08", + "templateId": "Quest:quest_s15_nightmare_q08", + "objectives": [ + { + "name": "quest_s15_nightmare_q08_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_08" + }, + { + "itemGuid": "S15-Quest:quest_s15_nightmare_q09", + "templateId": "Quest:quest_s15_nightmare_q09", + "objectives": [ + { + "name": "quest_s15_nightmare_q09_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Nightmare_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_w07_xpcoins_blue", + "templateId": "Quest:quest_s15_w07_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w07_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S15-Quest:quest_s15_w07_xpcoins_gold", + "templateId": "Quest:quest_s15_w07_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w07_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S15-Quest:quest_s15_w07_xpcoins_green", + "templateId": "Quest:quest_s15_w07_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w07_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S15-Quest:quest_s15_w07_xpcoins_purple", + "templateId": "Quest:quest_s15_w07_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w07_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w07_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_07" + }, + { + "itemGuid": "S15-Quest:quest_s15_w08_xpcoins_blue", + "templateId": "Quest:quest_s15_w08_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w08_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S15-Quest:quest_s15_w08_xpcoins_gold", + "templateId": "Quest:quest_s15_w08_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w08_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S15-Quest:quest_s15_w08_xpcoins_green", + "templateId": "Quest:quest_s15_w08_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w08_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S15-Quest:quest_s15_w08_xpcoins_purple", + "templateId": "Quest:quest_s15_w08_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w08_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w08_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_08" + }, + { + "itemGuid": "S15-Quest:quest_s15_w09_xpcoins_blue", + "templateId": "Quest:quest_s15_w09_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w09_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_w09_xpcoins_gold", + "templateId": "Quest:quest_s15_w09_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w09_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_w09_xpcoins_green", + "templateId": "Quest:quest_s15_w09_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w09_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_w09_xpcoins_purple", + "templateId": "Quest:quest_s15_w09_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w09_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w09_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_09" + }, + { + "itemGuid": "S15-Quest:quest_s15_w10_xpcoins_blue", + "templateId": "Quest:quest_s15_w10_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w10_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S15-Quest:quest_s15_w10_xpcoins_gold", + "templateId": "Quest:quest_s15_w10_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w10_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S15-Quest:quest_s15_w10_xpcoins_green", + "templateId": "Quest:quest_s15_w10_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w10_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S15-Quest:quest_s15_w10_xpcoins_purple", + "templateId": "Quest:quest_s15_w10_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w10_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w10_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_10" + }, + { + "itemGuid": "S15-Quest:quest_s15_w11_xpcoins_blue", + "templateId": "Quest:quest_s15_w11_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w11_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11" + }, + { + "itemGuid": "S15-Quest:quest_s15_w11_xpcoins_gold", + "templateId": "Quest:quest_s15_w11_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w11_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11" + }, + { + "itemGuid": "S15-Quest:quest_s15_w11_xpcoins_green", + "templateId": "Quest:quest_s15_w11_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w11_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11" + }, + { + "itemGuid": "S15-Quest:quest_s15_w11_xpcoins_purple", + "templateId": "Quest:quest_s15_w11_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w11_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w11_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_11" + }, + { + "itemGuid": "S15-Quest:quest_s15_w12_xpcoins_blue", + "templateId": "Quest:quest_s15_w12_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w12_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12" + }, + { + "itemGuid": "S15-Quest:quest_s15_w12_xpcoins_gold", + "templateId": "Quest:quest_s15_w12_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w12_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12" + }, + { + "itemGuid": "S15-Quest:quest_s15_w12_xpcoins_green", + "templateId": "Quest:quest_s15_w12_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w12_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12" + }, + { + "itemGuid": "S15-Quest:quest_s15_w12_xpcoins_purple", + "templateId": "Quest:quest_s15_w12_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w12_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w12_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_12" + }, + { + "itemGuid": "S15-Quest:quest_s15_w13_xpcoins_blue", + "templateId": "Quest:quest_s15_w13_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w13_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13" + }, + { + "itemGuid": "S15-Quest:quest_s15_w13_xpcoins_gold", + "templateId": "Quest:quest_s15_w13_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w13_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13" + }, + { + "itemGuid": "S15-Quest:quest_s15_w13_xpcoins_green", + "templateId": "Quest:quest_s15_w13_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w13_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13" + }, + { + "itemGuid": "S15-Quest:quest_s15_w13_xpcoins_purple", + "templateId": "Quest:quest_s15_w13_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w13_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w13_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_13" + }, + { + "itemGuid": "S15-Quest:quest_s15_w14_xpcoins_blue", + "templateId": "Quest:quest_s15_w14_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w14_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14" + }, + { + "itemGuid": "S15-Quest:quest_s15_w14_xpcoins_gold", + "templateId": "Quest:quest_s15_w14_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w14_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14" + }, + { + "itemGuid": "S15-Quest:quest_s15_w14_xpcoins_green", + "templateId": "Quest:quest_s15_w14_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w14_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14" + }, + { + "itemGuid": "S15-Quest:quest_s15_w14_xpcoins_purple", + "templateId": "Quest:quest_s15_w14_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w14_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w14_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_14" + }, + { + "itemGuid": "S15-Quest:quest_s15_w15_xpcoins_blue", + "templateId": "Quest:quest_s15_w15_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w15_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15" + }, + { + "itemGuid": "S15-Quest:quest_s15_w15_xpcoins_gold", + "templateId": "Quest:quest_s15_w15_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w15_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15" + }, + { + "itemGuid": "S15-Quest:quest_s15_w15_xpcoins_green", + "templateId": "Quest:quest_s15_w15_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w15_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15" + }, + { + "itemGuid": "S15-Quest:quest_s15_w15_xpcoins_purple", + "templateId": "Quest:quest_s15_w15_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w15_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w15_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_15" + }, + { + "itemGuid": "S15-Quest:quest_s15_w16_xpcoins_blue", + "templateId": "Quest:quest_s15_w16_xpcoins_blue", + "objectives": [ + { + "name": "quest_s15_w16_xpcoins_blue_obj0", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_blue_obj1", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_blue_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16" + }, + { + "itemGuid": "S15-Quest:quest_s15_w16_xpcoins_gold", + "templateId": "Quest:quest_s15_w16_xpcoins_gold", + "objectives": [ + { + "name": "quest_s15_w16_xpcoins_gold_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16" + }, + { + "itemGuid": "S15-Quest:quest_s15_w16_xpcoins_green", + "templateId": "Quest:quest_s15_w16_xpcoins_green", + "objectives": [ + { + "name": "quest_s15_w16_xpcoins_green_obj0", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_green_obj1", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_green_obj2", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_green_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16" + }, + { + "itemGuid": "S15-Quest:quest_s15_w16_xpcoins_purple", + "templateId": "Quest:quest_s15_w16_xpcoins_purple", + "objectives": [ + { + "name": "quest_s15_w16_xpcoins_purple_obj0", + "count": 1 + }, + { + "name": "quest_s15_w16_xpcoins_purple_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_CoinCollectXP_Week_16" + }, + { + "itemGuid": "S15-Quest:Quest_S15_HiddenRole_CompleteEventChallenges", + "templateId": "Quest:Quest_S15_HiddenRole_CompleteEventChallenges", + "objectives": [ + { + "name": "hiddenrole_completechallenges", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole" + }, + { + "itemGuid": "S15-Quest:Quest_S15_HiddenRole_CompleteTasks", + "templateId": "Quest:Quest_S15_HiddenRole_CompleteTasks", + "objectives": [ + { + "name": "hiddenrole_completetasks", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole" + }, + { + "itemGuid": "S15-Quest:Quest_S15_HiddenRole_EliminatePlayers", + "templateId": "Quest:Quest_S15_HiddenRole_EliminatePlayers", + "objectives": [ + { + "name": "hiddenrole_eliminate_players", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole" + }, + { + "itemGuid": "S15-Quest:Quest_S15_HiddenRole_PlayMatches", + "templateId": "Quest:Quest_S15_HiddenRole_PlayMatches", + "objectives": [ + { + "name": "hiddenrole_playmatches", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_HiddenRole" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_01_VisitSnowdownOutposts", + "templateId": "Quest:Quest_S15_OperationSnowdown_01_VisitSnowdownOutposts", + "objectives": [ + { + "name": "snowdown_visit_alpha", + "count": 1 + }, + { + "name": "snowdown_visit_beta", + "count": 1 + }, + { + "name": "snowdown_visit_charlie", + "count": 1 + }, + { + "name": "snowdown_visit_delta", + "count": 1 + }, + { + "name": "snowdown_visit_echo", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_02_OpenChestsSnowmandoOutposts", + "templateId": "Quest:Quest_S15_OperationSnowdown_02_OpenChestsSnowmandoOutposts", + "objectives": [ + { + "name": "snowdown_open_outpost_chests", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_03_DanceHolidayTrees", + "templateId": "Quest:Quest_S15_OperationSnowdown_03_DanceHolidayTrees", + "objectives": [ + { + "name": "snowdown_dance_holiday_tree_craggycliffs", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_dirtydocks", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_frenzyfarm", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_hollyhedges", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_lazylake", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_mistymeadows", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_pleasantpark", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_retailrow", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_saltysprings", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_slurpyswamp", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_steamystacks", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_sweatysands", + "count": 1 + }, + { + "name": "snowdown_dance_holiday_tree_weepingwoods", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_04_FriendsTop10", + "templateId": "Quest:Quest_S15_OperationSnowdown_04_FriendsTop10", + "objectives": [ + { + "name": "snowdown_friends_top10", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_05_DestroyNutcrackers", + "templateId": "Quest:Quest_S15_OperationSnowdown_05_DestroyNutcrackers", + "objectives": [ + { + "name": "snowdown_destroy_nutcrackers", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_06_X4Travel", + "templateId": "Quest:Quest_S15_OperationSnowdown_06_X4Travel", + "objectives": [ + { + "name": "snowdown_traveL_x4", + "count": 5000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_07_DestroyStructuresX4", + "templateId": "Quest:Quest_S15_OperationSnowdown_07_DestroyStructuresX4", + "objectives": [ + { + "name": "snowdown_destroy_structures_x4", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_08_CollectGoldBars", + "templateId": "Quest:Quest_S15_OperationSnowdown_08_CollectGoldBars", + "objectives": [ + { + "name": "snowdown_collect_gold_bars", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_09_FishFlopper", + "templateId": "Quest:Quest_S15_OperationSnowdown_09_FishFlopper", + "objectives": [ + { + "name": "snowdown_flopper", + "count": 1 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_10_RevivePlayers", + "templateId": "Quest:Quest_S15_OperationSnowdown_10_RevivePlayers", + "objectives": [ + { + "name": "snowdown_revive_players", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_11_HideSneakySnowman", + "templateId": "Quest:Quest_S15_OperationSnowdown_11_HideSneakySnowman", + "objectives": [ + { + "name": "snowdown_hide_snowman", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_12_PlayWithFriends", + "templateId": "Quest:Quest_S15_OperationSnowdown_12_PlayWithFriends", + "objectives": [ + { + "name": "snowdown_play_friends", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_13_DamageSnowdownWeapons", + "templateId": "Quest:Quest_S15_OperationSnowdown_13_DamageSnowdownWeapons", + "objectives": [ + { + "name": "snowdown_damage_rifle", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_14_StokeCampfire", + "templateId": "Quest:Quest_S15_OperationSnowdown_14_StokeCampfire", + "objectives": [ + { + "name": "snowdown_stoke_campfire", + "count": 2 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_01", + "templateId": "Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_01", + "objectives": [ + { + "name": "snowdown_completequests_01", + "count": 9 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_02", + "templateId": "Quest:Quest_S15_OperationSnowdown_CompleteEventChallenges_02", + "objectives": [ + { + "name": "snowdown_completequests_02", + "count": 12 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_OperationSnowdown" + }, + { + "itemGuid": "S15-Quest:Quest_S15_PlumRetro_CompleteEventChallenges", + "templateId": "Quest:Quest_S15_PlumRetro_CompleteEventChallenges", + "objectives": [ + { + "name": "plumretro_completechallenges", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro" + }, + { + "itemGuid": "S15-Quest:Quest_S15_PlumRetro_OutlastOpponents", + "templateId": "Quest:Quest_S15_PlumRetro_OutlastOpponents", + "objectives": [ + { + "name": "plumretro_outlast_opponents", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro" + }, + { + "itemGuid": "S15-Quest:Quest_S15_PlumRetro_PlayMatches", + "templateId": "Quest:Quest_S15_PlumRetro_PlayMatches", + "objectives": [ + { + "name": "plumretro_playmatches", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro" + }, + { + "itemGuid": "S15-Quest:Quest_S15_PlumRetro_PlayWithFriends", + "templateId": "Quest:Quest_S15_PlumRetro_PlayWithFriends", + "objectives": [ + { + "name": "plumretro_playwithfriends", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_Event_S15_PlumRetro" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_SR_Q01b", + "templateId": "Quest:Quest_S15_W1_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W1_SR_Q01", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_SR_Q01c", + "templateId": "Quest:Quest_S15_W1_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W1_SR_Q01", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_SR_Q01d", + "templateId": "Quest:Quest_S15_W1_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W1_SR_Q01", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_SR_Q01e", + "templateId": "Quest:Quest_S15_W1_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W1_SR_Q01", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W1_SR_Q02a", + "templateId": "Quest:Quest_S15_W1_SR_Q02a", + "objectives": [ + { + "name": "Quest_S15_W1_SR_Q01", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_SR_Q01a", + "templateId": "Quest:Quest_S15_W2_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W2_SR_Q01", + "count": 1500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_SR_Q01b", + "templateId": "Quest:Quest_S15_W2_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W2_SR_Q01", + "count": 3000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_SR_Q01c", + "templateId": "Quest:Quest_S15_W2_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W2_SR_Q01", + "count": 4500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_SR_Q01d", + "templateId": "Quest:Quest_S15_W2_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W2_SR_Q01", + "count": 6000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W2_SR_Q01e", + "templateId": "Quest:Quest_S15_W2_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W2_SR_Q01", + "count": 7500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_SR_Q01a", + "templateId": "Quest:Quest_S15_W3_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W3_SR_Q01", + "count": 3 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_SR_Q01b", + "templateId": "Quest:Quest_S15_W3_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W3_SR_Q01", + "count": 6 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_SR_Q01c", + "templateId": "Quest:Quest_S15_W3_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W3_SR_Q01", + "count": 9 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_SR_Q01d", + "templateId": "Quest:Quest_S15_W3_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W3_SR_Q01", + "count": 12 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W3_SR_Q01e", + "templateId": "Quest:Quest_S15_W3_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W3_SR_Q01", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_03" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bushranger_sr_q0a_damage_from_above", + "templateId": "Quest:quest_s15_w04_bushranger_sr_q0a_damage_from_above", + "objectives": [ + { + "name": "quest_s15_w04_bushranger_sr_q0a_damage_from_above_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bushranger_sr_q0b_damage_from_above", + "templateId": "Quest:quest_s15_w04_bushranger_sr_q0b_damage_from_above", + "objectives": [ + { + "name": "quest_s15_w04_bushranger_sr_q0b_damage_from_above_obj0", + "count": 8000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bushranger_sr_q0c_damage_from_above", + "templateId": "Quest:quest_s15_w04_bushranger_sr_q0c_damage_from_above", + "objectives": [ + { + "name": "quest_s15_w04_bushranger_sr_q0c_damage_from_above_obj0", + "count": 12000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bushranger_sr_q0d_damage_from_above", + "templateId": "Quest:quest_s15_w04_bushranger_sr_q0d_damage_from_above", + "objectives": [ + { + "name": "quest_s15_w04_bushranger_sr_q0d_damage_from_above_obj0", + "count": 16000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w04_bushranger_sr_q0e_damage_from_above", + "templateId": "Quest:quest_s15_w04_bushranger_sr_q0e_damage_from_above", + "objectives": [ + { + "name": "quest_s15_w04_bushranger_sr_q0e_damage_from_above_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_04" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_guide_sr_q01a", + "templateId": "Quest:quest_s15_w05_guide_sr_q01a", + "objectives": [ + { + "name": "quest_s15_w05_sr_q01", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_guide_sr_q01b", + "templateId": "Quest:quest_s15_w05_guide_sr_q01b", + "objectives": [ + { + "name": "quest_s15_w05_sr_q01", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_guide_sr_q01c", + "templateId": "Quest:quest_s15_w05_guide_sr_q01c", + "objectives": [ + { + "name": "quest_s15_w05_sr_q01", + "count": 30 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_guide_sr_q01d", + "templateId": "Quest:quest_s15_w05_guide_sr_q01d", + "objectives": [ + { + "name": "quest_s15_w05_sr_q01", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + }, + { + "itemGuid": "S15-Quest:quest_s15_w05_guide_sr_q01e", + "templateId": "Quest:quest_s15_w05_guide_sr_q01e", + "objectives": [ + { + "name": "quest_s15_w05_sr_q01", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_SR_Q01a", + "templateId": "Quest:Quest_S15_W6_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W6_SR_Q01a_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_SR_Q01b", + "templateId": "Quest:Quest_S15_W6_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W6_SR_Q01b_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_SR_Q01c", + "templateId": "Quest:Quest_S15_W6_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W6_SR_Q01c_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_SR_Q01d", + "templateId": "Quest:Quest_S15_W6_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W6_SR_Q01d_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W6_SR_Q01e", + "templateId": "Quest:Quest_S15_W6_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W6_SR_Q01e_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_06" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_SR_Q01a", + "templateId": "Quest:Quest_S15_W7_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W7_SR_Q01a_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_SR_Q01b", + "templateId": "Quest:Quest_S15_W7_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W7_SR_Q01b_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_SR_Q01c", + "templateId": "Quest:Quest_S15_W7_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W7_SR_Q01c_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_SR_Q01d", + "templateId": "Quest:Quest_S15_W7_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W7_SR_Q01d_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W7_SR_Q01e", + "templateId": "Quest:Quest_S15_W7_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W7_SR_Q01e_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_07" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_SR_Q01a", + "templateId": "Quest:Quest_S15_W8_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W8_SR_Q01a_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_SR_Q01b", + "templateId": "Quest:Quest_S15_W8_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W8_SR_Q01b_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_SR_Q01c", + "templateId": "Quest:Quest_S15_W8_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W8_SR_Q01c_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_SR_Q01d", + "templateId": "Quest:Quest_S15_W8_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W8_SR_Q01d_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W8_SR_Q01e", + "templateId": "Quest:Quest_S15_W8_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W8_SR_Q01e_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_08" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_SR_Q01a", + "templateId": "Quest:Quest_S15_W9_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W9_SR_Q01a_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_SR_Q01b", + "templateId": "Quest:Quest_S15_W9_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W9_SR_Q01b_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_SR_Q01c", + "templateId": "Quest:Quest_S15_W9_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W9_SR_Q01c_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_SR_Q01d", + "templateId": "Quest:Quest_S15_W9_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W9_SR_Q01d_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W9_SR_Q01e", + "templateId": "Quest:Quest_S15_W9_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W9_SR_Q01e_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_09" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_SR_Q01a", + "templateId": "Quest:Quest_S15_W10_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W10_SR_Q01a_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_SR_Q01b", + "templateId": "Quest:Quest_S15_W10_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W10_SR_Q01b_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_SR_Q01c", + "templateId": "Quest:Quest_S15_W10_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W10_SR_Q01c_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_SR_Q01d", + "templateId": "Quest:Quest_S15_W10_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W10_SR_Q01d_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W10_SR_Q01e", + "templateId": "Quest:Quest_S15_W10_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W10_SR_Q01e_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_10" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_SR_Q01a", + "templateId": "Quest:Quest_S15_W11_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W11_SR_Q01a_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_SR_Q01b", + "templateId": "Quest:Quest_S15_W11_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W11_SR_Q01b_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_SR_Q01c", + "templateId": "Quest:Quest_S15_W11_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W11_SR_Q01c_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_SR_Q01d", + "templateId": "Quest:Quest_S15_W11_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W11_SR_Q01d_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W11_SR_Q01e", + "templateId": "Quest:Quest_S15_W11_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W11_SR_Q01e_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_11" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_SR_Q01a", + "templateId": "Quest:Quest_S15_W12_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W12_SR_Q01", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_SR_Q01b", + "templateId": "Quest:Quest_S15_W12_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W12_SR_Q01", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_SR_Q01c", + "templateId": "Quest:Quest_S15_W12_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W12_SR_Q01", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_SR_Q01d", + "templateId": "Quest:Quest_S15_W12_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W12_SR_Q01", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W12_SR_Q01e", + "templateId": "Quest:Quest_S15_W12_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W12_SR_Q01", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_12" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_SR_Q01a", + "templateId": "Quest:Quest_S15_W13_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W13_SR_Q01a_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_SR_Q01b", + "templateId": "Quest:Quest_S15_W13_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W13_SR_Q01b_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_SR_Q01c", + "templateId": "Quest:Quest_S15_W13_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W13_SR_Q01c_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_SR_Q01d", + "templateId": "Quest:Quest_S15_W13_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W13_SR_Q01d_obj0", + "count": 240 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W13_SR_Q01e", + "templateId": "Quest:Quest_S15_W13_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W13_SR_Q01e_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_13" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_SR_Q01a", + "templateId": "Quest:Quest_S15_W14_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W14_SR_Q01a_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_SR_Q01b", + "templateId": "Quest:Quest_S15_W14_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W14_SR_Q01b_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_SR_Q01c", + "templateId": "Quest:Quest_S15_W14_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W14_SR_Q01c_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_SR_Q01d", + "templateId": "Quest:Quest_S15_W14_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W14_SR_Q01d_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W14_SR_Q01e", + "templateId": "Quest:Quest_S15_W14_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W14_SR_Q01e_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_14" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_SR_Q01a", + "templateId": "Quest:Quest_S15_W15_SR_Q01a", + "objectives": [ + { + "name": "Quest_S15_W15_SR_Q01a_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_SR_Q01b", + "templateId": "Quest:Quest_S15_W15_SR_Q01b", + "objectives": [ + { + "name": "Quest_S15_W15_SR_Q01b_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_SR_Q01c", + "templateId": "Quest:Quest_S15_W15_SR_Q01c", + "objectives": [ + { + "name": "Quest_S15_W15_SR_Q01c_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_SR_Q01d", + "templateId": "Quest:Quest_S15_W15_SR_Q01d", + "objectives": [ + { + "name": "Quest_S15_W15_SR_Q01d_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_W15_SR_Q01e", + "templateId": "Quest:Quest_S15_W15_SR_Q01e", + "objectives": [ + { + "name": "Quest_S15_W15_SR_Q01e_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_Legendary_Week_15" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T1_01_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T1_01_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t1_01_q01_obj01", + "count": 110 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T1_02_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T1_02_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t1_02_q01_obj01", + "count": 120 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T1_03_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T1_03_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t1_03_q01_obj01", + "count": 130 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T1_04_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T1_04_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t1_04_q01_obj01", + "count": 140 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T1_05_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T1_05_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t1_05_q01_obj01", + "count": 150 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T1_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T2_01_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T2_01_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t2_01_q01_obj01", + "count": 160 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T2_02_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T2_02_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t2_02_q01_obj01", + "count": 170 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T2_03_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T2_03_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t2_03_q01_obj01", + "count": 180 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T2_04_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T2_04_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t2_04_q01_obj01", + "count": 190 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T2_05_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T2_05_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t2_05_q01_obj01", + "count": 200 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T2_05" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T3_01_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T3_01_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t3_01_q01_obj01", + "count": 205 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_01" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T3_02_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T3_02_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t3_02_q01_obj01", + "count": 210 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_02" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T3_03_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T3_03_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t3_03_q01_obj01", + "count": 215 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_03" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T3_04_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T3_04_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t3_04_q01_obj01", + "count": 220 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_04" + }, + { + "itemGuid": "S15-Quest:Quest_S15_Style_SuperStyles_T3_05_q01", + "templateId": "Quest:Quest_S15_Style_SuperStyles_T3_05_q01", + "objectives": [ + { + "name": "quest_style_s15superstyles_t3_05_q01_obj01", + "count": 225 + } + ], + "challenge_bundle_id": "S15-ChallengeBundle:QuestBundle_S15_SuperStyles_T3_05" + } ] } - ], - "BattleRoyale": [ - { - "templateId": "Quest:AthenaDaily_Outlive_Solo", - "objectives": [ - "daily_athena_outlive_solo_players" - ] - }, - { - "templateId": "Quest:AthenaDaily_Outlive_Squad", - "objectives": [ - "daily_athena_outlive_squad_players_v2" - ] - }, - { - "templateId": "Quest:AthenaDaily_Outlive", - "objectives": [ - "daily_athena_outlive_players_v3" - ] - }, - { - "templateId": "Quest:AthenaDaily_PlayMatches", - "objectives": [ - "daily_athena_play_matches_v3" - ] - }, - { - "templateId": "Quest:AthenaDaily_Solo_Top25", - "objectives": [ - "daily_athena_solo_top25_v2" - ] - }, - { - "templateId": "Quest:AthenaDaily_Squad_Top6", - "objectives": [ - "daily_athena_squad_top6_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_InteractAmmoCrate", - "objectives": [ - "athena_daily_loot_ammobox_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_InteractTreasureChest", - "objectives": [ - "daily_athena_loot_chest_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerElimination", - "objectives": [ - "athena_daily_kill_players_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerEliminationAssaultRifles", - "objectives": [ - "athena_daily_kill_players_assault_rifles" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerEliminationPistols", - "objectives": [ - "athena_daily_kill_players_pistol_v3" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerEliminationShotguns", - "objectives": [ - "athena_daily_kill_players_shotgun_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSMGs", - "objectives": [ - "athena_daily_kill_players_smg_v2" - ] - }, - { - "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSniperRifles", - "objectives": [ - "athena_daily_kill_players_sniper_v2" - ] - } - ] + } } \ No newline at end of file